Fix dotfiles structure

This commit is contained in:
2026-03-15 10:32:59 +05:30
parent ca014e9949
commit a2c3404cb2
2557 changed files with 148415 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
return {
{
"folke/trouble.nvim",
opts = {
}, -- for default options, refer to the configuration section for custom setup.
cmd = "Trouble",
keys = {
{
"<leader>tt",
function()
require("trouble").toggle()
end,
desc = "Trouble toggle",
},
{
"[t",
"<cmd> cnext<CR>",
desc = "Trouble next"
},
{
"]t",
"<cmd> cprev<CR>",
desc = "Touble previous",
},
},
},
}