diff options
Diffstat (limited to '.vim/lua/plugins.lua')
| -rw-r--r-- | .vim/lua/plugins.lua | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/.vim/lua/plugins.lua b/.vim/lua/plugins.lua index d808784..14afe8a 100644 --- a/.vim/lua/plugins.lua +++ b/.vim/lua/plugins.lua @@ -103,7 +103,7 @@ return require('packer').startup({function() end} use {'kosayoda/nvim-lightbulb', -- {{{ - branch = 'virtual-text-column', + -- branch = 'virtual-text-column', config = function() _G.lightbulb_config = { sign = { @@ -116,13 +116,14 @@ return require('packer').startup({function() win_opts = {}, }, virtual_text = { - enabled = true, + enabled = false, text = '← ', text_pos = 'eol', column = -1, }, + -- status text only works on master status_text = { - enabled = false, + enabled = true, text = '', test_unavailable = '', } |