Compare commits

...

3 Commits

Author SHA1 Message Date
64d102d3d9 Update README 2025-07-22 01:30:59 -07:00
18f2be77d9 Update README and remove custom treesitter 2025-07-22 01:29:31 -07:00
19e76f216d Update README 2025-07-22 01:21:25 -07:00
3 changed files with 7 additions and 22 deletions

View File

@ -34,5 +34,5 @@ rm -r Meslo Meslo.zip
3. Create an Alacritty config folder and link the alacritty config in this repo into there. 3. Create an Alacritty config folder and link the alacritty config in this repo into there.
``` ```
mkdir -p ~/.config/alacritty mkdir -p ~/.config/alacritty
ln -sfn /path/to/dotfiles/lazyvim/alacritty-ubuntu.toml ~/.config/alacritty/alacritty.toml ln -sfn /path/to/dotfiles/alacritty/alacritty-ubuntu.toml ~/.config/alacritty/alacritty.toml
``` ```

View File

@ -63,6 +63,12 @@ Install with:
sudo apt-get install ripgrep sudo apt-get install ripgrep
``` ```
2. fdfind
This is used for the search bar in the explorer panel.
Install with:
```
sudo apt install fd-find
``` ```
## Plugins/Addons/Extras ## Plugins/Addons/Extras

View File

@ -1,21 +0,0 @@
return {
"nvim-treesitter/nvim-treesitter",
opts = {
ignore_install = {},
highlight = {
enable = true,
},
incremental_selection = {
enable = true,
keymaps = {
init_selection = "gnn",
node_incremental = "grn",
scope_incremental = "grc",
node_decremental = "grm",
},
},
indent = {
enable = true,
},
},
}