Skip to content

Commit 23fc4e5

Browse files
authored
README.md: updated windows install instructions (#674)
1 parent b99af2d commit 23fc4e5

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

README.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ Neovim's configurations are located under the following paths, depending on your
4343
| Windows (cmd)| `%userprofile%\AppData\Local\nvim\` |
4444
| Windows (powershell)| `$env:USERPROFILE\AppData\Local\nvim\` |
4545

46+
### Install Kickstart
47+
4648
Clone kickstart.nvim:
4749

4850
<details><summary> Linux and Mac </summary>
@@ -192,3 +194,23 @@ This requires:
192194
```lua
193195
{'nvim-telescope/telescope-fzf-native.nvim', build = 'cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release && cmake --build build --config Release && cmake --install build --prefix build' }
194196
```
197+
198+
Alternatively one can install gcc and make which don't require changing the config,
199+
the easiest way is to use choco:
200+
201+
1. install [chocolatey](https://chocolatey.org/install)
202+
either follow the instructions on the page or use winget,
203+
run in cmd as **admin**:
204+
```
205+
winget install --accept-source-agreements chocolatey.chocolatey
206+
```
207+
208+
2. install all requirements using choco, exit previous cmd and
209+
open a new one so that choco path is set, run in cmd as **admin**:
210+
```
211+
choco install -y neovim git ripgrep wget fd unzip gzip mingw make
212+
```
213+
214+
Then continue with the [Install Kickstart](#Install-Kickstart) step.
215+
216+

0 commit comments

Comments
 (0)