@@ -25,6 +25,7 @@ External Requirements:
25
25
- Basic utils: ` git ` , ` make ` , ` unzip ` , C Compiler (` gcc ` )
26
26
- [ ripgrep] ( https://github.com/BurntSushi/ripgrep#installation ) ,
27
27
[ fd-find] ( https://github.com/sharkdp/fd#installation )
28
+ - [ tree-sitter CLI] ( https://github.com/tree-sitter/tree-sitter/blob/master/crates/cli/README.md#installation )
28
29
- Clipboard tool (xclip/xsel/win32yank or other depending on the platform)
29
30
- A [ Nerd Font] ( https://www.nerdfonts.com/ ) : optional, provides various icons
30
31
- if you have it set ` vim.g.have_nerd_font ` in ` init.lua ` to true
@@ -185,7 +186,7 @@ winget install --accept-source-agreements chocolatey.chocolatey
185
186
2 . install all requirements using choco, exit the previous cmd and
186
187
open a new one so that choco path is set, and run in cmd as ** admin** :
187
188
```
188
- choco install -y neovim git ripgrep wget fd unzip gzip mingw make
189
+ choco install -y neovim git ripgrep wget fd unzip gzip mingw make tree-sitter
189
190
```
190
191
</details >
191
192
<details ><summary >WSL (Windows Subsystem for Linux)</summary >
@@ -195,7 +196,7 @@ wsl --install
195
196
wsl
196
197
sudo add-apt-repository ppa:neovim-ppa/unstable -y
197
198
sudo apt update
198
- sudo apt install make gcc ripgrep unzip git xclip neovim
199
+ sudo apt install make gcc ripgrep fd-find treesitter-cli unzip git xclip neovim
199
200
```
200
201
</details >
201
202
@@ -205,14 +206,14 @@ sudo apt install make gcc ripgrep unzip git xclip neovim
205
206
```
206
207
sudo add-apt-repository ppa:neovim-ppa/unstable -y
207
208
sudo apt update
208
- sudo apt install make gcc ripgrep unzip git xclip neovim
209
+ sudo apt install make gcc ripgrep fd-find treesitter-cli unzip git xclip neovim
209
210
```
210
211
</details >
211
212
<details ><summary >Debian Install Steps</summary >
212
213
213
214
```
214
215
sudo apt update
215
- sudo apt install make gcc ripgrep unzip git xclip curl
216
+ sudo apt install make gcc ripgrep fd-find tree-sitter-cli unzip git xclip curl
216
217
217
218
# Now we install nvim
218
219
curl -LO https://github.com/neovim/neovim/releases/latest/download/nvim-linux-x86_64.tar.gz
@@ -228,14 +229,14 @@ sudo ln -sf /opt/nvim-linux-x86_64/bin/nvim /usr/local/bin/
228
229
<details ><summary >Fedora Install Steps</summary >
229
230
230
231
```
231
- sudo dnf install -y gcc make git ripgrep fd-find unzip neovim
232
+ sudo dnf install -y gcc make git ripgrep fd-find tree-sitter-cli unzip neovim
232
233
```
233
234
</details >
234
235
235
236
<details ><summary >Arch Install Steps</summary >
236
237
237
238
```
238
- sudo pacman -S --noconfirm --needed gcc make git ripgrep fd unzip neovim
239
+ sudo pacman -S --noconfirm --needed gcc make git ripgrep fd tree-sitter-cli unzip neovim
239
240
```
240
241
</details >
241
242
0 commit comments