diff --git a/install/app-neovim.sh b/install/app-neovim.sh index 9f9bad0..5338f58 100644 --- a/install/app-neovim.sh +++ b/install/app-neovim.sh @@ -1,10 +1,9 @@ -cd ~/Downloads/ -git clone https://github.com/neovim/neovim -cd neovim -git checkout stable -make CMAKE_BUILD_TYPE=Release -make install -cd ..; rm -rf neovim; cd ~/ +cd ~/Downloads +wget -O nvim.tar.gz "https://github.com/neovim/neovim/releases/latest/download/nvim-linux64.tar.gz" +tar -xf nvim.tar.gz +sudo install nvim-linux64/bin/nvim /usr/local/bin/nvim +rm -rf nvim-linux64 nvim.tar.gz +cd - if [ ! -d "$HOME/.config/nvim" ]; then git clone https://github.com/LazyVim/starter ~/.config/nvim