20 lines
282 B
Lua
20 lines
282 B
Lua
local spec = {
|
|
"folke/trouble.nvim",
|
|
}
|
|
|
|
spec.dependencies = {
|
|
"nvim-tree/nvim-web-devicons",
|
|
}
|
|
|
|
spec.opts = {
|
|
focus = true
|
|
}
|
|
|
|
spec.cmd = "Trouble"
|
|
|
|
spec.keys = {
|
|
{ "<Leader>ct", "<cmd>Trouble diagnostics toggle<CR>", desc = "Toggle trouble window" },
|
|
}
|
|
|
|
return spec
|