Files
dotfiles/nvim/lua/olinpin/plugins/trouble.lua
2025-01-21 10:55:56 +01:00

23 lines
598 B
Lua

return {
"folke/trouble.nvim",
dependencies = { "nvim-tree/nvim-web-devicons" },
opts = {
-- your configuration comes here
-- or leave it empty to use the default settings
-- refer to the configuration section below
},
event = "VeryLazy",
keys = {
{
"<C-t>",
"<cmd>Trouble diagnostics toggle<cr>",
desc = "Diagnostics (Trouble)",
},
{
"<C-T>",
"<cmd>Trouble diagnostics toggle filter.buf=0<cr>",
desc = "Buffer Diagnostics (Trouble)",
},
}
}