nvim: Update LSP status configuration variables

This commit is contained in:
Sanchayan Maity 2021-01-26 14:21:32 +05:30
parent 366688d1c3
commit 1dbb82fc49
1 changed files with 10 additions and 6 deletions

View File

@ -80,13 +80,17 @@ for _, lsp in ipairs(servers) do
lsp_fuzzy.setup {}
lsp_status.register_progress()
lsp_status.config({
status_symbol = '',
indicator_errors = 'e',
indicator_warnings = 'w',
indicator_info = 'i',
indicator_hint = 'h',
indicator_ok = '✔️',
kind_labels = {},
current_function = true,
indicator_separator = ' ',
indicator_errors = '',
indicator_warnings = '',
indicator_info = ' 🛈 ',
indicator_hint = '',
indicator_ok = '',
spinner_frames = { '', '', '', '', '', '', '', '' },
status_symbol = ' 🇻 ',
select_symbol = nil
})
nvim_lsp[lsp].setup {
on_attach = on_attach,