Update README.md

This commit is contained in:
mgua 2023-04-26 10:23:33 +02:00 committed by GitHub
parent 87832fb6a1
commit 2ad04a7bc7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 16 additions and 14 deletions

View File

@ -84,21 +84,23 @@ Actions to be executed from administrator user:
### Neovim Kickstart Configuration for Windows (in non privileged user context) ### Neovim Kickstart Configuration for Windows (in non privileged user context)
- cd %HOMEPATH% (typically c:\Users\<your-username>\) ```
- py -m venv venv_nvim (for python development, we create a dedicated environment for nvim) cd %HOMEPATH% (typically c:\Users\<your-username>\)
- .\venv_nvim\Scripts\activate (for python) py -m venv venv_nvim (for python development, we create a dedicated environment for nvim)
- py -m pip install pip --upgrade (for python, upgrade pip) .\venv_nvim\Scripts\activate (for python)
- py -m pip install neovim (for python, install neovim python package) py -m pip install pip --upgrade (for python, upgrade pip)
- mkdir %HOMEPATH%\AppData\Local\nvim\ (to avoid some path not found error) py -m pip install neovim (for python, install neovim python package)
- mkdir %HOMEPATH%\AppData\Local\Temp\nvim\ (to avoid some path not found error from lsp) mkdir %HOMEPATH%\AppData\Local\nvim\ (to avoid some path not found error)
- Exit from nvim if open mkdir %HOMEPATH%\AppData\Local\Temp\nvim\ (to avoid some path not found error from lsp)
- cd %HOMEPATH%\AppData\Local\ (Exit from nvim if open)
- ren nvim nvim_old cd %HOMEPATH%\AppData\Local\
- mkdir nvim ren nvim nvim_old
- cd nvim mkdir nvim
- git clone https://github.com/mgua/kickstart.nvim.git . cd nvim
git clone https://github.com/mgua/kickstart.nvim.git .
(launch nvim)
```
--
#### Example: Adding an autopairs plugin #### Example: Adding an autopairs plugin