diff options
| author | Robert Günzler <r@gnzler.io> | 2021-11-02 17:41:56 +0100 |
|---|---|---|
| committer | Robert Günzler <r@gnzler.io> | 2021-11-02 19:06:48 +0100 |
| commit | a1149828dd403d4811e3615540cf8bbd98c56a6b (patch) | |
| tree | e8207a118e4bdd2e5a2a21b4809ddb18b78da336 /.vim/lua/plugins.lua | |
| parent | a7b411e639eaaf6ec1f651292a884f15f3703a97 (diff) | |
vim: bring lightbulb to statusline
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 = '', } |