get non-ancient version of neovim

This commit is contained in:
Adam 2023-02-06 20:11:53 -05:00
parent 2584efabd9
commit a93ce93918

View file

@ -3,15 +3,31 @@
# Base
sudo apt-get -y install \
btop \
neovim \
byobu \
zsh \
nnn
nnn &&
# neovim
sudo apt-get -y install software-properties-common &&
sudo add-apt-repository -y ppa:neovim-ppa/stable &&
sudo apt-get -y update &&
sudo apt-get -y install neovim &&
sudo apt-get -y install python3-dev python3-pip &&
sudo update-alternatives --install /usr/bin/vi vi /usr/bin/nvim 60 &&
sudo update-alternatives --config vi &&
sudo update-alternatives --install /usr/bin/vim vim /usr/bin/nvim 60 &&
sudo update-alternatives --config vim &&
sudo update-alternatives --install /usr/bin/editor editor /usr/bin/nvim 60 &&
sudo update-alternatives --config editor &&
# Packer
git clone --depth 1 https://github.com/wbthomason/packer.nvim\
if ! test -d ~/.local/share/nvim/site/pack/packer/start/packer.nvim; then
git clone --depth 1 https://github.com/wbthomason/packer.nvim\
~/.local/share/nvim/site/pack/packer/start/packer.nvim
fi &&
# OhMyZsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" &&
if ! test -d .config/zsh/ohmyzsh; then
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
fi &&
sudo chsh -s /bin/zsh $USER