my-nvim-lua/lua/custom/plugins/configs/marks.lua

24 lines
263 B
Lua
Raw Normal View History

local present, marks = pcall(require, "marks")
if not present then
return
end
M = {}
local config = {
bookmark_0 = {
sign= "",
virt_text = "vim",
annotate = true,
}
}
M.setup = function()
marks.setup(config)
end
return M