- install vim

- no longer require emacs
- removed neovim install to install.sh script
This commit is contained in:
Stefen Auris 2024-02-23 01:03:41 -05:00
parent 530de79ac3
commit 5f0ec524b7

View file

@ -36,7 +36,8 @@ sudo apt-get -my install \
bat \ bat \
nala \ nala \
duf \ duf \
tree tree \
vim
read -n1 -p $'\nDoes this system need a ssh server?\n' REPLY read -n1 -p $'\nDoes this system need a ssh server?\n' REPLY
if [[ $REPLY == [Yy] ]]; then if [[ $REPLY == [Yy] ]]; then
@ -44,16 +45,9 @@ 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 sudo apt-get install synaptic vim-gtk3
else
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.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/upgrade neovim
mkdir -v ~/bin
trash ~/bin/nvim
curl -LO https://github.com/neovim/neovim/releases/latest/download/nvim.appimage -o ~/bin/nvim
chmod u+x ~/bin/nvim