You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
269 B
Lua

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