Do you know how to replace Nano with nVim as the default editor? I am using the Fish shell and per their tutorial:
A universal variable is a variable whose value is shared across all instances of fish
, now and in the future – even after a reboot. You can make a variable universal with set -U
Typing this, however, leads to problems.
~> set -U EDITOR /usr/bin/nvim
set: Universal variable 'EDITOR' is shadowed by the global variable of the same name.
I thought about just uninstalling Nano, but I don’t know if that’s the best solution. Thanks!