Coc.nvim install

From wikinotes

Install

os

# archlinux
sudo pacman -S \
  nodejs \
  npm

# macos
brew install
  node.js \
  npm

npm

npm install -g neovim

vim

Plug "https://github.com/neoclide/coc.nvim", {'branch': 'release'}

Install Extensions (languages)

" NOTE: technically this is supposed to work, but it doesn't for all languages
" Plug 'https://github.com/neoclide/coc-tsserver', {'do': 'yarn install --frozen-lockfile'}

if !(isdirectory($HOME."/.config/coc/extensions/node_modules/coc-sh"))
  CocInstall coc-sh
endif