- Install
neovim
:
sudo apt install neovim
- Install node.js:
curl -fsSL https://deb.nodesource.com/setup_16.x | sudo -E bash -
sudo apt-get install -y nodejs
- Install Pluggin Manager
curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
- Setup
init.vim
:
mkdir ~/.config/nvim
touch ~/.config/nvim/init.vim
- Add to
init.vim
(insert the following ininit.vim
):
set runtimepath^=~/.vim runtimepath+=~/.vim/after
let &packpath=&runtimepath
source ~/.vimrc
-
Edit
vimrc
Paste the vimrc from this repo into~/.vimrc
-
Install pluggins: Run
nvim
:
nvim
- Run installer:
:PlugInstall