13
$ update-alternatives --list editor
/bin/nano
/usr/bin/code
/usr/bin/vim.tiny

update-alternatives --list editor does not show nvim which I installed using snap. Even though my PATH variable contains /snap/bin. How do I fix this?

1 Answers1

15

Not all packages register themselves as an alternative. You can manually add nvim as an alternative for editor using update-alternatives.

sudo update-alternatives --install /usr/bin/editor editor /snap/bin/nvim 1111
Kulfy
  • 18,154