added neovim

This commit is contained in:
Stefen Auris 2023-02-23 05:06:37 -05:00
parent 3c1792235f
commit 80a0739a54
2 changed files with 10 additions and 13 deletions

View file

@ -33,7 +33,10 @@ sudo apt-get -my install \
ncdu \ ncdu \
exa \ exa \
bottom \ bottom \
neofetch neofetch \
trash-cli \
bat \
neovim
read -n1 -p $'Does this system need a ssh server?\n' REPLY read -n1 -p $'Does this system need a ssh server?\n' REPLY
if [[ $REPLY == [Yy] ]]; then if [[ $REPLY == [Yy] ]]; then
@ -41,18 +44,11 @@ read -n1 -p $'Does 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 emacs vim-gtk3 neovim-qt
else else
sudo apt-get install emacs-nox sudo apt-get install emacs-nox
fi fi
#Fix stupid Rust issue
if [ -f "/usr/.crates2.json" ]; then
sudo sed -i '/crates2/d' /var/lib/dpkg/info/ripgrep.list
sudo rm -f /usr/.crates2.json
sudo apt-get -my install bat
sudo sed -i '/crates2/d' /var/lib/dpkg/info/bat.list
sudo rm -f /usr/.crates2.json
fi
#This section installs software outside apt #This section installs software outside apt
dpkg_url https://github.com/muesli/duf/releases/download/v0.6.2/duf_0.6.2_linux_amd64.deb dpkg_url https://github.com/muesli/duf/releases/download/v0.8.1/duf_0.8.1_linux_amd64.deb
dpkg_url https://github.com/dandavison/delta/releases/download/0.15.1/git-delta_0.15.1_amd64.deb || dpkg_url https://github.com/dandavison/delta/releases/download/0.15.1/git-delta-musl_0.15.1_amd64.deb

View file

@ -32,7 +32,8 @@ sudo apt-get -my install \
fd-find \ fd-find \
ncdu \ ncdu \
tree \ tree \
neofetch neofetch \
trash-cli \
nala nala
read -n1 -p $'Does this system need a ssh server?\n' REPLY read -n1 -p $'Does this system need a ssh server?\n' REPLY
@ -41,7 +42,7 @@ read -n1 -p $'Does 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 emacs vim-gtk3 neovim-qt
else else
sudo apt-get install emacs-nox sudo apt-get install emacs-nox
fi fi