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

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

M.options = M.defaults

return M