-- -- 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/MagicDuck/grug-far.nvim "MagicDuck/grug-far.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", keys = { { "W", "WhichKey", desc = "WhichKey" } }, opts = { preset = "classic", win = { --border = { "", "═" ,"", "", "", "", "", "" } border = "none" }, }, }, -- 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 = { culhl = true, signs = { add = { text = '⎸' }, -- default: '┃' change = { text = '⎸' }, -- default: '┃' delete = { text = '_' }, topdelete = { text = '‾' }, changedelete = { text = '⎸' }, -- default: '~' untracked = { text = '┆' }, }, signs_staged = { add = { text = '⎸' }, -- default: '┃' change = { text = '⎸' }, -- default: '┃' delete = { text = '_' }, topdelete = { text = '‾' }, changedelete = { text = '~' }, }, }, }, -- 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, }, }