mirror of
https://github.com/jdhao/nvim-config.git
synced 2025-06-08 14:14:33 +02:00
30 lines
583 B
PowerShell
30 lines
583 B
PowerShell
# Install scoop
|
|
Set-ExecutionPolicy RemoteSigned -scope CurrentUser
|
|
iwr -useb get.scoop.sh | iex
|
|
|
|
# Install node
|
|
scoop install nodejs
|
|
|
|
# Install ripgrep
|
|
scoop install ripgrep
|
|
|
|
# Install universal-ctags
|
|
scoop bucket add extras
|
|
scoop install universal-ctags
|
|
|
|
# Install vim-language-server
|
|
npm install -g vim-language-server
|
|
|
|
# Install miniconda3
|
|
scoop install miniconda3
|
|
|
|
# Install pynvim
|
|
pip install -U pynvim
|
|
|
|
# Install python-language-server
|
|
pip install 'python-lsp-server[all]' pylsp-mypy pyls-isort
|
|
|
|
# Install neovim nightly
|
|
scoop bucket add versions
|
|
scoop install neovim-nightly
|