feat(Fish): Set default editor to Neovim

Using the recommendation in the FAQ
(https://fishshell.com/docs/current/faq.html#why-doesn-t-set-ux-exported-universal-variables-seem-to-work),
set the `EDITOR` environment variable to `nvim`.
This commit is contained in:
Dionisio E Alonso 2024-01-26 10:04:08 -03:00
parent 72fc1f4244
commit ae1d9a6043
1 changed files with 2 additions and 0 deletions

View File

@ -2,3 +2,5 @@ if status is-interactive
# Commands to run in interactive sessions can go here
[ -r $HOME/.sh.d/aliases ] && . $HOME/.sh.d/aliases
end
set -gx EDITOR nvim