I have installed nvim using AppImage mentioned as below
curl -LO https://github.com/neovim/neovim/releases/download/nightly/nvim.appimage
chmod u+x nvim.appimage
./nvim.appimage
if i use nvim test,yml ,it fails as '-bash: /usr/bin/nvim: No such file or directory'
if i use ./nvim.appimage test.yml then it works. How to map this to nvim so that it works properly?
Linux looks for binaries in the paths that are set in
$PATHvariable. To check current paths executeecho $PATHOne way to fix it would be to move
nvim.appimage(and rename it to just nvim) to one of the paths set in that variable.Another way is to append the current path of
nvim.appimageto$PATH. This was answered in detail How to correctly add a path to PATH?