summary refs log tree commit diff
path: root/.vim/lua/plugins/_lightbulb.lua
blob: cc3f941dd924d14ea158acea0cbc78f76dc48540 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require('nvim-lightbulb').update_lightbulb {
  sign = {
    enabled = true,
    priority = 10,
  },
  float = {
    enabled = true,
    text = '󱉵',
    win_opts = {},
  },
  virtual_test = {
    enabled = false
  }
}

require('utils').augroup('lightbulb', {
  {'CursorHold,CursorHoldI', '*', "lua require'nvim-lightbulb'.update_lightbulb()"}
})