diff --git a/lua/custom/plugins/configs/marks.lua b/lua/custom/plugins/configs/marks.lua new file mode 100644 index 0000000..e68189e --- /dev/null +++ b/lua/custom/plugins/configs/marks.lua @@ -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