strom/fish-misc
Archived
1
0
Fork 0
This repository has been archived on 2023-08-27. You can view files and clone it, but cannot push or open issues or pull requests.
fish-misc/functions/vim.fish

9 lines
244 B
Fish

# vim: ft=fish ts=4 sw=4 noet
function vim --description 'alias vim to nvim with its own scope'
if command -sq nvim
set cmd 'systemd-run --quiet --user --collect --scope nvim'
_tmux_rename_window $cmd 'vim' $argv
else
return 1
end
end