1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- return {
- "folke/trouble.nvim",
- dependencies = { "nvim-tree/nvim-web-devicons" },
- opts = {
- position = "bottom",
- height = 10,
- width = 50,
- icons = true,
- mode = "workspace_diagnostics",
- severity = nil,
- fold_open = "",
- fold_closed = "",
- group = true,
- padding = true,
- cycle_results = true,
- action_keys = {
-
-
- close = "q",
- cancel = "<esc>",
- refresh = "r",
- jump = { "<cr>", "<tab>", "<2-leftmouse>" },
- open_split = { "<c-x>" },
- open_vsplit = { "<c-v>" },
- open_tab = { "<c-t>" },
- jump_close = { "o" },
- toggle_mode = "m",
- switch_severity = "s",
- toggle_preview = "P",
- hover = "K",
- preview = "p",
- open_code_href = "c",
- close_folds = { "zM", "zm" },
- open_folds = { "zR", "zr" },
- toggle_fold = { "zA", "za" },
- previous = "k",
- next = "j",
- help = "?"
- },
- multiline = true,
- indent_lines = true,
- win_config = { border = "single" },
- auto_open = false,
- auto_close = false,
- auto_preview = true,
- auto_fold = false,
- auto_jump = { "lsp_definitions" },
- include_declaration = { "lsp_references", "lsp_implementations", "lsp_definitions" },
- signs = {
-
- error = "",
- warning = "",
- hint = "",
- information = "",
- other = "",
- },
- use_diagnostic_signs = false
- }
- }
|