aboutsummaryrefslogtreecommitdiff
path: root/lua/simple-denote/config.lua
blob: ad7dffc90c97f521089f0a2aa738dcc4ff9ee7f7 (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 = ""
}

M.options = M.defaults

return M