1
0
mirror of https://github.com/jdhao/nvim-config.git synced 2025-06-08 14:14:33 +02:00
jdhao-nvim-config/docs/nvim_setup_windows.ps1
2022-01-26 22:54:49 +08:00

33 lines
643 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 bash-language-server
npm install -g bash-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