17 lines
311 B
Lua
17 lines
311 B
Lua
return {
|
|
"folke/trouble.nvim",
|
|
event = "VeryLazy",
|
|
keys = {
|
|
{ "<leader>x", function() require("trouble").toggle() end, desc = "Show errors" },
|
|
},
|
|
dependencies = {
|
|
"nvim-tree/nvim-web-devicons",
|
|
},
|
|
opts = {
|
|
position = "right",
|
|
padding = false,
|
|
use_diagnostic_signs = true,
|
|
},
|
|
config = true,
|
|
}
|