From 58c604b26e215d55e7e8aef6d412d7e149d3ca29 Mon Sep 17 00:00:00 2001 From: whitney Date: Tue, 8 Jul 2025 16:47:45 -0700 Subject: [PATCH] Update Lazyvim --- lazyvim/README.md | 13 +++++++++++++ .../lua/{plugins => plugins-disabled}/neo-tree.lua | 7 +++++++ lazyvim/lua/plugins/plugins.lua | 1 - lazyvim/lua/plugins/treesitter.lua | 1 - 4 files changed, 20 insertions(+), 2 deletions(-) rename lazyvim/lua/{plugins => plugins-disabled}/neo-tree.lua (57%) delete mode 100644 lazyvim/lua/plugins/plugins.lua diff --git a/lazyvim/README.md b/lazyvim/README.md index 564fb8a..87004ae 100644 --- a/lazyvim/README.md +++ b/lazyvim/README.md @@ -52,6 +52,19 @@ ln -sfn /path/to/dotfiles/lazyvim/init.lua ~/.config/nvim/init.lua ## Reminders If uninstalling, you need to manually get rid of stuff in `~/.local/share/nvim` before reinstalling everything. +## Dependencies +Some plugins depend on other packages. + +1. Ripgrep +This is needed because the grep feature (Leader + /) spawns an rg process to do grepping. + +Install with: +``` +sudo apt-get install ripgrep +``` + +``` + ## Plugins/Addons/Extras ### Mason (Language Servers) diff --git a/lazyvim/lua/plugins/neo-tree.lua b/lazyvim/lua/plugins-disabled/neo-tree.lua similarity index 57% rename from lazyvim/lua/plugins/neo-tree.lua rename to lazyvim/lua/plugins-disabled/neo-tree.lua index 0d092bc..6c22de6 100644 --- a/lazyvim/lua/plugins/neo-tree.lua +++ b/lazyvim/lua/plugins-disabled/neo-tree.lua @@ -1,5 +1,12 @@ return { "nvim-neo-tree/neo-tree.nvim", + branch = "v3.x", + dependencies = { + "nvim-lua/plenary.nvim", + "nvim-tree/nvim-web-devicons", + "MunifTanjim/nui.nvim", + }, + lazy = false, opts = { filesystem = { filtered_items = { diff --git a/lazyvim/lua/plugins/plugins.lua b/lazyvim/lua/plugins/plugins.lua deleted file mode 100644 index a564707..0000000 --- a/lazyvim/lua/plugins/plugins.lua +++ /dev/null @@ -1 +0,0 @@ -return {} diff --git a/lazyvim/lua/plugins/treesitter.lua b/lazyvim/lua/plugins/treesitter.lua index 29623ac..8071de5 100644 --- a/lazyvim/lua/plugins/treesitter.lua +++ b/lazyvim/lua/plugins/treesitter.lua @@ -1,7 +1,6 @@ return { "nvim-treesitter/nvim-treesitter", opts = { - ensure_installed = "all", ignore_install = {}, highlight = { enable = true,