blob: efd69c0f24689a2707db3328dfe3440221362cf7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
local M = {}
M.defaults = {
ext = "md",
dir = "~/notes/",
add_heading = true,
retitle_heading = true,
heading_char = "" -- This gets set automatically
}
M.options = M.defaults
return M
|