summaryrefslogtreecommitdiffstats
path: root/after/plugin/lightbulb.lua
diff options
context:
space:
mode:
Diffstat (limited to 'after/plugin/lightbulb.lua')
-rw-r--r--after/plugin/lightbulb.lua23
1 files changed, 0 insertions, 23 deletions
diff --git a/after/plugin/lightbulb.lua b/after/plugin/lightbulb.lua
deleted file mode 100644
index 00fcfcc..0000000
--- a/after/plugin/lightbulb.lua
+++ /dev/null
@@ -1,23 +0,0 @@
-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="",
-})