From e0cf9f5cad9513243dd19d1e4a55c4c2733bcc1f Mon Sep 17 00:00:00 2001 From: fiplox Date: Thu, 20 Apr 2023 14:51:19 +0200 Subject: [PATCH] fix: set loclist by default, fix icon, autoclose --- lua/plugins/init.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lua/plugins/init.lua b/lua/plugins/init.lua index 548e001..992122f 100644 --- a/lua/plugins/init.lua +++ b/lua/plugins/init.lua @@ -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. 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 },