blob: 82eda83099d5537080ca8bfb3eece7735c6ad793 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# 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
|