From 18f2be77d9bf640b6373ee9ae2617974da11f311 Mon Sep 17 00:00:00 2001 From: whitney Date: Tue, 22 Jul 2025 01:29:31 -0700 Subject: [PATCH] Update README and remove custom treesitter --- lazyvim/README.md | 6 ++++++ lazyvim/lua/plugins/treesitter.lua | 21 --------------------- 2 files changed, 6 insertions(+), 21 deletions(-) delete mode 100644 lazyvim/lua/plugins/treesitter.lua 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, - }, - }, -}