diff options
Diffstat (limited to '.vim/lua/plugins.lua')
| -rw-r--r-- | .vim/lua/plugins.lua | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.vim/lua/plugins.lua b/.vim/lua/plugins.lua index 9822c82..8b262b9 100644 --- a/.vim/lua/plugins.lua +++ b/.vim/lua/plugins.lua @@ -156,6 +156,17 @@ return require('packer').startup({function() require('lsp').setup() end} -- }}} + use {'nvim-lua/lsp-status.nvim', -- {{{ + config = function() + local lspstatus = require('lsp-status') + lspstatus.config { + diagnostics = false, + current_function = false, + status_symbol = '', + } + lspstatus.register_progress() + end} -- }}} + use {'kosayoda/nvim-lightbulb', -- {{{ -- branch = 'virtual-text-column', config = function() |