23 lines
460 B
Lua
23 lines
460 B
Lua
---@type LazySpec
|
|
return {
|
|
"andersevenrud/nvim_context_vt",
|
|
event = "User AstroFile",
|
|
cmd = { "NvimContextVtToggle" },
|
|
dependencies = {
|
|
"AstroNvim/astrocore",
|
|
---@type AstroCoreOpts
|
|
opts = {
|
|
mappings = {
|
|
n = {
|
|
["<Leader>uv"] = {
|
|
function()
|
|
require("nvim_context_vt").toggle()
|
|
end,
|
|
desc = "Toggle virutal text context",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|