summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDamjan 9000 <damjan.9000@gmail.com>2024-03-03 03:12:55 +0100
committerGitHub <noreply@github.com>2024-03-02 21:12:55 -0500
commit32adb203651a87c60327a1f1348e28b846f0fc6b (patch)
treec3e106d6aeba0d222aa4d743228ee6ce7d04aaaf
parent1e880d8c5b923fe17b931c162d3fa875608d5d2f (diff)
downloaddots-32adb203651a87c60327a1f1348e28b846f0fc6b.tar.gz
README.md: updated windows install instructions (#674)
-rw-r--r--nvim/README.md22
1 files changed, 22 insertions, 0 deletions
diff --git a/nvim/README.md b/nvim/README.md
index 448a996..ed7a59b 100644
--- a/nvim/README.md
+++ b/nvim/README.md
@@ -45,6 +45,8 @@ Neovim's configurations are located under the following paths, depending on your
| Windows (cmd)| `%userprofile%\AppData\Local\nvim\` |
| Windows (powershell)| `$env:USERPROFILE\AppData\Local\nvim\` |
+### Install Kickstart
+
Clone kickstart.nvim:
<details><summary> Linux and Mac </summary>
@@ -197,3 +199,23 @@ This requires:
```lua
{'nvim-telescope/telescope-fzf-native.nvim', build = 'cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release && cmake --build build --config Release && cmake --install build --prefix build' }
```
+
+Alternatively one can install gcc and make which don't require changing the config,
+the easiest way is to use choco:
+
+1. install [chocolatey](https://chocolatey.org/install)
+either follow the instructions on the page or use winget,
+run in cmd as **admin**:
+```
+winget install --accept-source-agreements chocolatey.chocolatey
+```
+
+2. install all requirements using choco, exit previous cmd and
+open a new one so that choco path is set, run in cmd as **admin**:
+```
+choco install -y neovim git ripgrep wget fd unzip gzip mingw make
+```
+
+Then continue with the [Install Kickstart](#Install-Kickstart) step.
+
+