File tree 1 file changed +22
-0
lines changed 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -43,6 +43,8 @@ Neovim's configurations are located under the following paths, depending on your
43
43
| Windows (cmd)| ` %userprofile%\AppData\Local\nvim\ ` |
44
44
| Windows (powershell)| ` $env:USERPROFILE\AppData\Local\nvim\ ` |
45
45
46
+ ### Install Kickstart
47
+
46
48
Clone kickstart.nvim:
47
49
48
50
<details ><summary > Linux and Mac </summary >
@@ -192,3 +194,23 @@ This requires:
192
194
```lua
193
195
{'nvim-telescope/telescope-fzf-native.nvim', build = 'cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release && cmake --build build --config Release && cmake --install build --prefix build' }
194
196
```
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
+
You can’t perform that action at this time.
0 commit comments