aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorDamjan 9000 <damjan.9000@gmail.com>2024-03-03 09:54:58 +0100
committerDamjan 9000 <damjan.9000@gmail.com>2024-03-03 09:54:58 +0100
commitde8986f7a8a6688fee64b381ec3ef4a9c347518e (patch)
treedcacc4cc7c23c9fa26faa45d339f0f1eb7b5ae4b /README.md
parentdf166c3b8b075a3444dd88215320aa7fbaa55ed5 (diff)
parente6710a461ab08513af80c213929ff64e75b5e456 (diff)
Merge 'upstream/master' VimEnter, win install, custom/plugins note
fix: add note in readme for custom plugins README.md: updated windows install instructions (#674) feat: use VimEnter event instead of VeryLazy (#673)
Diffstat (limited to 'README.md')
-rw-r--r--README.md24
1 files changed, 24 insertions, 0 deletions
diff --git a/README.md b/README.md
index 448a996..5af6aca 100644
--- a/README.md
+++ b/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>
@@ -102,6 +104,8 @@ can install to your machine using the methods above.
#### Examples of adding popularly requested plugins
+NOTE: You'll need to uncomment the line in the init.lua that turns on loading custom plugins.
+
<details>
<summary>Adding autopairs</summary>
@@ -197,3 +201,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.
+
+