diff options
author | Chris <[email protected]> | 2021-03-22 22:11:06 -0400 |
---|---|---|
committer | Chris <[email protected]> | 2021-03-22 22:11:06 -0400 |
commit | a86ddbe4154ad82b0c1e655c77e8b81e050ada19 (patch) | |
tree | 651daec654e50b5cc414363ce7c53c3265d29467 | |
parent | 6d0c0efad8d1adb4d5f6c267372b0233f12e5809 (diff) |
lightbulb config
-rw-r--r-- | lua/nv-lightbulb/init.lua | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/lua/nv-lightbulb/init.lua b/lua/nv-lightbulb/init.lua new file mode 100644 index 00000000..02b21184 --- /dev/null +++ b/lua/nv-lightbulb/init.lua @@ -0,0 +1,34 @@ +-- Showing defaults +require'nvim-lightbulb'.update_lightbulb { + sign = { + enabled = true, + -- Priority of the gutter sign + priority = 10, + text = "💡", + }, + float = { + enabled = false, + -- Text to show in the popup float + text = "💡", + -- Available keys for window options: + -- - height of floating window + -- - width of floating window + -- - wrap_at character to wrap at for computing height + -- - max_width maximal width of floating window + -- - max_height maximal height of floating window + -- - pad_left number of columns to pad contents at left + -- - pad_right number of columns to pad contents at right + -- - pad_top number of lines to pad contents at top + -- - pad_bottom number of lines to pad contents at bottom + -- - offset_x x-axis offset of the floating window + -- - offset_y y-axis offset of the floating window + -- - anchor corner of float to place at the cursor (NW, NE, SW, SE) + -- - winblend transparency of the window (0-100) + win_opts = {}, + }, + virtual_text = { + enabled = false, + -- Text to show at virtual text + text = "💡", + } +} |