marks.nvim config file (marks is unused now)

main
spike 2 years ago
parent 53804989ab
commit ddb78b21d0

@ -0,0 +1,23 @@
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
Loading…
Cancel
Save