Update app-neovim.sh - install from prebuilt bin

Install Neovim from a prebuilt file following the exact same procedure we use for Zellij.
This commit is contained in:
Salajan Silviu
2024-06-06 22:28:36 +03:00
committed by GitHub
parent b3a61f888b
commit 0843edda95

View File

@@ -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