Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save goldie-lin/ce7dd86892ca9fd33cf15f9dfa920295 to your computer and use it in GitHub Desktop.
Save goldie-lin/ce7dd86892ca9fd33cf15f9dfa920295 to your computer and use it in GitHub Desktop.
Install external tools for plugins of Neovim (nvim & nvim-qt) in Windows

Install external tools for plugins of Neovim (nvim) in Windows

Python (pip)

Python 3

> cd /d %UserProfile%\venv
> neovim3\Scripts\activate.bat
(neovim3) > pip install bashate
(neovim3) > pip install vim-vint
(neovim3) > pip install yapf
(neovim3) > pip install zdict
(neovim3) > pip install language-check
:: Update packages:
:: (neovim3) > pip install -U XXX

Python 2

> cd /d %UserProfile%\venv
> neovim2\Scripts\activate.bat
(neovim2) > pip install ???
:: Update packages:
:: (neovim2) > pip install -U XXX

Ruby (gem)

> gem update --system
> gem install ???
:: Update packages:
:: > gem update XXX

Node.js (npm)

> npm install -g dockerfile_lint
> npm install -g markdownlint-cli
:: Update packages: As same as install command.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment