Skip to content

Latest commit

 

History

History
54 lines (39 loc) · 1.21 KB

README.md

File metadata and controls

54 lines (39 loc) · 1.21 KB

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