nvim: Update LSP status configuration variables
This commit is contained in:
parent
366688d1c3
commit
1dbb82fc49
1 changed files with 10 additions and 6 deletions
|
@ -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,
|
||||||
|
|
Loading…
Reference in a new issue