fix: set loclist by default, fix icon, autoclose

This commit is contained in:
fiplox 2023-04-20 14:51:19 +02:00
parent 6dddf7df02
commit e0cf9f5cad
1 changed files with 3 additions and 3 deletions

View File

@ -402,7 +402,7 @@ return {
height = 10, -- height of the trouble list when position is top or bottom
width = 50, -- width of the list when position is left or right
icons = true, -- use devicons for filenames
mode = 'quickfix', -- "workspace_diagnostics", "document_diagnostics", "quickfix", "lsp_references", "loclist"
mode = 'loclist', -- "workspace_diagnostics", "document_diagnostics", "quickfix", "lsp_references", "loclist"
fold_open = '', -- icon used for open folds
fold_closed = '', -- icon used for closed folds
group = true, -- group results by file
@ -430,7 +430,7 @@ return {
},
indent_lines = true, -- add an indent guide below the fold icons
auto_open = false, -- automatically open the list when you have diagnostics
auto_close = false, -- automatically close the list when you have no diagnostics
auto_close = true, -- automatically close the list when you have no diagnostics
auto_preview = false, -- automatically preview the location of the diagnostic. <esc> to close preview and go back to last window
auto_fold = false, -- automatically fold a file trouble list at creation
auto_jump = { 'lsp_definitions' }, -- for the given modes, automatically jump if there is only a single result
@ -440,7 +440,7 @@ return {
warning = '',
hint = '',
information = '',
other = '',
other = '🞊',
},
use_diagnostic_signs = false, -- enabling this will use the signs defined in your lsp client
},