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

View file

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