aboutsummaryrefslogtreecommitdiff
path: root/lua/simple-denote/config.lua
blob: e41c0a94ad5fdcf39e178c2c13a8f94894954279 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
local M = {}

M.defaults = {
  ext = "md",
  dir = "~/notes/",
  add_heading = true,
  retitle_heading = true,
}

M.options = M.defaults

return M