debian's neovim is too old

This commit is contained in:
Stefen Auris 2023-11-05 23:17:06 -05:00
parent d24995a60a
commit e1a0b7ad88

View file

@ -32,10 +32,8 @@ sudo apt-get -my install \
fd-find \ fd-find \
ncdu \ ncdu \
exa \ exa \
neofetch \
trash-cli \ trash-cli \
bat \ bat \
neovim \
nala \ nala \
duf duf
@ -45,10 +43,15 @@ read -n1 -p $'\nDoes this system need a ssh server?\n' REPLY
fi fi
read -n1 -p $'\nDoes this system have a GUI?\n' REPLY read -n1 -p $'\nDoes this system have a GUI?\n' REPLY
if [[ $REPLY == [Yy] ]]; then if [[ $REPLY == [Yy] ]]; then
sudo apt-get install synaptic emacs vim-gtk3 neovim-qt sudo apt-get install synaptic emacs vim-gtk3
else else
sudo apt-get install emacs-nox sudo apt-get install emacs-nox
fi fi
#This section installs software outside apt #This section installs software outside apt
dpkg_url https://github.com/dandavison/delta/releases/download/0.15.1/git-delta-musl_0.15.1_amd64.deb || dpkg_url https://github.com/dandavison/delta/releases/download/0.16.5/git-delta_0.16.5_amd64.deb dpkg_url https://github.com/dandavison/delta/releases/download/0.16.5/git-delta_0.16.5_amd64.deb
#install neovim
mkdir -v ~/bin
curl -LO https://github.com/neovim/neovim/releases/latest/download/nvim.appimage -o ~/bin/nvim
chmod u+x ~/bin/nvim