From 1dbb82fc49805e753f195700a096372e16e1dd07 Mon Sep 17 00:00:00 2001 From: Sanchayan Maity Date: Tue, 26 Jan 2021 14:21:32 +0530 Subject: [PATCH] nvim: Update LSP status configuration variables --- nvim/.config/nvim/lua/lsp.lua | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/nvim/.config/nvim/lua/lsp.lua b/nvim/.config/nvim/lua/lsp.lua index 1a40da2..2d4243f 100644 --- a/nvim/.config/nvim/lua/lsp.lua +++ b/nvim/.config/nvim/lua/lsp.lua @@ -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,