starter/lua/plugins/action-hints.lua

13 lines
293 B
Lua
Raw Normal View History

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,
}