1234567891011121314151617181920212223 |
- local autocmd = vim.api.nvim_create_autocmd
- -- autocmd(
- -- 'CursorHold',
- -- {
- -- pattern = '*',
- -- callback = function(ev)
- -- require('nvim-lightbulb').update_lightbulb()
- -- end,
- -- }
- -- )
- --
- -- autocmd(
- -- 'CursorHoldI',
- -- {
- -- pattern = '*',
- -- callback = function(ev)
- -- require('nvim-lightbulb').update_lightbulb()
- -- end,
- -- }
- -- )
- --
|