The goal of this commit was to break my config into smaller, logical chunks. I was having a hard time remembering which file contained which plugin config. I also took the time to clean out some plugins I added but never used, and add an old favourite (tpope/vim-surround).
15 lines
243 B
Lua
15 lines
243 B
Lua
return {
|
|
{
|
|
"folke/trouble.nvim",
|
|
dependencies = { "nvim-tree/nvim-web-devicons" },
|
|
opts = {},
|
|
cmd = "Trouble",
|
|
keys = {
|
|
{
|
|
"<Leader>tt",
|
|
"<cmd>Trouble diagnostics toggle<CR>",
|
|
desc = "Toggle Trouble",
|
|
},
|
|
},
|
|
},
|
|
}
|