From 0830dfcf90dc708330730808f2fd67f5b7f46ef3 Mon Sep 17 00:00:00 2001 From: jdhao Date: Fri, 6 Aug 2021 00:20:55 +0800 Subject: Add installation script for Windows, update doc --- docs/nvim_setup_windows.ps1 | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 docs/nvim_setup_windows.ps1 (limited to 'docs/nvim_setup_windows.ps1') diff --git a/docs/nvim_setup_windows.ps1 b/docs/nvim_setup_windows.ps1 new file mode 100644 index 0000000..49ff94a --- /dev/null +++ b/docs/nvim_setup_windows.ps1 @@ -0,0 +1,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-nightly -- cgit v1.2.3