Add nvim lightbulb to visualize code actions
This commit is contained in:
parent
aa9a887a08
commit
1fdad0db6e
2 changed files with 13 additions and 0 deletions
|
|
@ -24,6 +24,7 @@
|
|||
"nvim-dap-repl-highlights": { "branch": "master", "commit": "a7512fc0a0de0c0be8d58983939856dda6f72451" },
|
||||
"nvim-dap-ui": { "branch": "master", "commit": "73a26abf4941aa27da59820fd6b028ebcdbcf932" },
|
||||
"nvim-dap-virtual-text": { "branch": "master", "commit": "df66808cd78b5a97576bbaeee95ed5ca385a9750" },
|
||||
"nvim-lightbulb": { "branch": "master", "commit": "aa3a8b0f4305b25cfe368f6c9be9923a7c9d0805" },
|
||||
"nvim-nio": { "branch": "master", "commit": "21f5324bfac14e22ba26553caf69ec76ae8a7662" },
|
||||
"nvim-surround": { "branch": "main", "commit": "0e62500b98f4513feaaf7425c135472457ea5b7d" },
|
||||
"nvim-treesitter": { "branch": "master", "commit": "066fd6505377e3fd4aa219e61ce94c2b8bdb0b79" },
|
||||
|
|
|
|||
12
nvim/lua/plugs/nvim-lightbulb.lua
Normal file
12
nvim/lua/plugs/nvim-lightbulb.lua
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
return {
|
||||
"kosayoda/nvim-lightbulb",
|
||||
opts = {
|
||||
hide_in_unfocused_buffer = true,
|
||||
code_lenses = true,
|
||||
sign = { enabled = false, },
|
||||
virtual_text = { enabled = true, },
|
||||
float = { enabled = false, },
|
||||
status_text = { enabled = false, },
|
||||
autocmd = { enabled = true, },
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue