-- -- This file adds local changes to the corresponding file and plugins in LazyVim -- return { -- file explorer { -- https://github.com/nvim-neo-tree/neo-tree.nvim "nvim-neo-tree/neo-tree.nvim", enabled = false, }, -- search/replace in multiple files { -- https://github.com/nvim-pack/nvim-spectre", "nvim-pack/nvim-spectre", enabled = false, }, -- Fuzzy finder. -- The default key bindings to find files will use Telescope's -- `find_files` or `git_files` depending on whether the -- directory is a git repo. { -- https://github.com/nvim-telescope/telescope.nvim", "nvim-telescope/telescope.nvim", enabled = false, }, -- Flash enhances the built-in search functionality by showing labels -- at the end of each match, letting you quickly jump to a specific -- location. { -- https://github.com/folke/flash.nvim "folke/flash.nvim", enabled = false, }, -- which-key helps you remember key bindings by showing a popup -- with the active keybindings of the command you started typing. --{ -- https://github.com/folke/which-key.nvim -- "folke/which-key.nvim", --}, -- git signs highlights text that has changed since the list -- git commit, and also lets you interactively stage & unstage -- hunks in a commit. { -- https://github.com/lewis6991/gitsigns.nvim", "lewis6991/gitsigns.nvim", opts = { signs = { add = { text = "+" }, change = { text = "~" }, delete = { text = "_" }, topdelete = { text = "‾" }, changedelete = { text = "~" }, untracked = { text = "│" }, }, }, }, -- Automatically highlights other instances of the word under your cursor. -- This works with LSP, Treesitter, and regexp matching to find the other -- instances. { -- https://github.com/RRethy/vim-illuminate "RRethy/vim-illuminate", enabled = false, }, -- buffer remove --{ -- https://github.com/echasnovski/mini.bufremove -- "echasnovski/mini.bufremove", --}, -- better diagnostics list and others { -- https://github.com/folke/trouble.nvim "folke/trouble.nvim", keys = { { "T", "Trouble diagnostics toggle focus=true filter.buf=0", desc = "Document Diagnostics (Trouble)" }, }, }, -- Finds and lists all of the TODO, HACK, BUG, etc comment -- in your project and loads them into a browsable list. { -- https://github.com/folke/todo-comments.nvim "folke/todo-comments.nvim", enabled = false, }, }