From 590f0309995a569954fc94b1d5df6b6391ead9fa Mon Sep 17 00:00:00 2001 From: Squibid Date: Fri, 11 Aug 2023 20:43:58 -0400 Subject: kitchen sink cause I'm too lazy to sort through this junk --- after/plugin/lightbulb.lua | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 after/plugin/lightbulb.lua (limited to 'after/plugin/lightbulb.lua') 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="", -}) -- cgit v1.2.1