mirror of
https://github.com/tiyn/dotfiles.git
synced 2026-03-28 10:24:47 +01:00
16 lines
483 B
Lua
16 lines
483 B
Lua
return {
|
|
-- display available options for highlighted word
|
|
"tiyn/action-hints.nvim",
|
|
lazy = true, -- load as dependency
|
|
config = function()
|
|
require("action-hints").setup({
|
|
template = {
|
|
-- definition = { text = "D", color = "#add8e6" },
|
|
-- references = { text = "R%s", color = "#ff6666" },
|
|
definition = { text = Definition_sign, color = "#add8e6" },
|
|
references = { text = Reference_sign, color = "#ff6666" },
|
|
},
|
|
})
|
|
end,
|
|
}
|