Skip to content

Latest commit

 

History

History

nvim

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Setup steps for neovim

Install neovim

sudo apt install neovim

Install Vim Plug

sh -c 'curl -fLo "${XDG_DATA_HOME:-$HOME/.local/share}"/nvim/site/autoload/plug.vim --create-dirs \
       https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'

Install node for coc

Via package manager

sudo apt search nodejs
sudo apt install nodejs
sudo apt install npm

Using NodeSource PPA

cd ~
curl -sL https://deb.nodesource.com/setup_16.x -o /tmp/nodesource_setup.sh

Verify that the script is safe to run

less /tmp/nodesource_setup.sh

When you are satisfied that the script is safe to run, exit your editor. Then run the script with sudo:

sudo bash /tmp/nodesource_setup.sh
sudo apt install nodejs