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