summary refs log tree commit diff
path: root/.vim/lua/plugins.lua
diff options
context:
space:
mode:
authorRobert Günzler <r@gnzler.io>2021-11-02 17:41:56 +0100
committerRobert Günzler <r@gnzler.io>2021-11-02 19:06:48 +0100
commita1149828dd403d4811e3615540cf8bbd98c56a6b (patch)
treee8207a118e4bdd2e5a2a21b4809ddb18b78da336 /.vim/lua/plugins.lua
parenta7b411e639eaaf6ec1f651292a884f15f3703a97 (diff)
vim: bring lightbulb to statusline
Diffstat (limited to '.vim/lua/plugins.lua')
-rw-r--r--.vim/lua/plugins.lua7
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 = '',
         }