Compare commits

..

No commits in common. "64d102d3d96b10c04da9267c77264396bc938f44" and "58c604b26e215d55e7e8aef6d412d7e149d3ca29" have entirely different histories.

3 changed files with 22 additions and 7 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.
```
mkdir -p ~/.config/alacritty
ln -sfn /path/to/dotfiles/alacritty/alacritty-ubuntu.toml ~/.config/alacritty/alacritty.toml
ln -sfn /path/to/dotfiles/lazyvim/alacritty-ubuntu.toml ~/.config/alacritty/alacritty.toml
```

View File

@ -63,12 +63,6 @@ Install with:
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

View File

@ -0,0 +1,21 @@
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,
},
},
}