add plugin configs & mess with the binds
This commit is contained in:
23
after/plugin/lightbulb.lua
Normal file
23
after/plugin/lightbulb.lua
Normal file
@ -0,0 +1,23 @@
|
||||
local status_ok, lightbulb = pcall(require, "nvim-lightbulb")
|
||||
if not status_ok then
|
||||
return
|
||||
end
|
||||
|
||||
lightbulb.setup {
|
||||
sign = {
|
||||
enabled = true,
|
||||
priority = 10000, -- make this really high so it always shows
|
||||
},
|
||||
autocmd = {
|
||||
enabled = true,
|
||||
pattern = {"*"},
|
||||
events = {"CursorHold", "CursorHoldI"}
|
||||
}
|
||||
}
|
||||
|
||||
vim.fn.sign_define('LightBulbSign', {
|
||||
text = "f",
|
||||
texthl = "LightBulbSignTxthl",
|
||||
linehl="",
|
||||
numhl="",
|
||||
})
|
Reference in New Issue
Block a user