nixos/scripts/installers/nvim.sh
Evie Litherland-Smith ee4033af82 Add nvim installer script
Add clean up for legacy style install
2023-05-05 15:17:02 +01:00

9 lines
339 B
Bash
Executable file

curl -sSLO https://github.com/neovim/neovim/releases/download/stable/nvim.appimage
curl -sSLO https://github.com/neovim/neovim/releases/download/stable/nvim.appimage.sha256sum
sha256sum -c nvim.appimage.sha256sum || {
rm nvim.appimage nvim.appimage.sha256sum
exit 1
}
chmod a+x nvim.appimage
mv nvim.appimage $HOME/.local/bin/nvim