Files
dotfiles/fish/config.fish
Nick Mello 2c5831ef70 fish: git: Setup default editor to be neovim
Sets default editor for things such as git commits and diffs

Signed-off-by: Nicholas Mello <nick@nmello.dev>
2025-08-14 22:45:30 -05:00

9 lines
133 B
Fish

if status is-interactive
if type -q fzf
fzf --fish | source
end
set -Ux EDITOR nvim
set -Ux VISUAL nvim
end