mirror of https://github.com/LazyVim/starter
13 lines
293 B
Lua
13 lines
293 B
Lua
|
return {
|
||
|
"roobert/action-hints.nvim",
|
||
|
config = function()
|
||
|
require("action-hints").setup({
|
||
|
template = {
|
||
|
definition = { text = " ⊛", color = "#add8e6" },
|
||
|
references = { text = " ↱%s", color = "#ff6666" },
|
||
|
},
|
||
|
use_virtual_text = true,
|
||
|
})
|
||
|
end,
|
||
|
}
|