mirror of
https://github.com/runyanjake/dotfiles.git
synced 2025-10-05 06:07:30 -07:00
Compare commits
No commits in common. "64d102d3d96b10c04da9267c77264396bc938f44" and "58c604b26e215d55e7e8aef6d412d7e149d3ca29" have entirely different histories.
64d102d3d9
...
58c604b26e
@ -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
|
||||
```
|
||||
|
@ -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
|
||||
|
21
lazyvim/lua/plugins/treesitter.lua
Normal file
21
lazyvim/lua/plugins/treesitter.lua
Normal 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,
|
||||
},
|
||||
},
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user