[feature] replace vim with neovim

This commit is contained in:
Klesh Wong 2020-06-11 12:00:49 +08:00
parent 13dd70352f
commit 77c5727537
2 changed files with 8 additions and 4 deletions

View File

@ -5,7 +5,7 @@ set DIR (dirname (dirname (readlink -f (status --current-filename))))
# cli basic tooling # cli basic tooling
pacman -S \ pacman -S \
base-devel \ base-devel \
vim \ neovim \
tmux bc \ tmux bc \
unzip p7zip \ unzip p7zip \
openssh \ openssh \

View File

@ -2,6 +2,10 @@
set -e set -e
sudo add-apt-repository ppa:jonathonf/vim -y #sudo add-apt-repository ppa:jonathonf/vim -y
sudo apt update #sudo apt update
sudo apt install -y vim #sudo apt install -y vim
sudo add-apt-repository ppa:neovim-ppa/stable -y
sudo apt-get update
sudo apt install -y neovim