dotfiles/fish/.config/fish/functions/vz.fish

8 lines
91 B
Fish

function vz
set file (fzf --height 40% --reverse)
if test -f $file
vim $file
end
end