diff --git a/lazyvim/README.md b/lazyvim/README.md index 87004ae..655ea46 100644 --- a/lazyvim/README.md +++ b/lazyvim/README.md @@ -63,6 +63,12 @@ Install with: sudo apt-get install ripgrep ``` +2. fdfind +This is used for the search bar in the treesitter panel. + +Install with: +``` +sudo apt install fd-find ``` ## Plugins/Addons/Extras diff --git a/lazyvim/lua/plugins/treesitter.lua b/lazyvim/lua/plugins/treesitter.lua deleted file mode 100644 index 8071de5..0000000 --- a/lazyvim/lua/plugins/treesitter.lua +++ /dev/null @@ -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, - }, - }, -}