aboutsummaryrefslogtreecommitdiff
path: root/lua/simple-denote/config.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/simple-denote/config.lua')
-rw-r--r--lua/simple-denote/config.lua12
1 files changed, 12 insertions, 0 deletions
diff --git a/lua/simple-denote/config.lua b/lua/simple-denote/config.lua
new file mode 100644
index 0000000..e41c0a9
--- /dev/null
+++ b/lua/simple-denote/config.lua
@@ -0,0 +1,12 @@
+local M = {}
+
+M.defaults = {
+ ext = "md",
+ dir = "~/notes/",
+ add_heading = true,
+ retitle_heading = true,
+}
+
+M.options = M.defaults
+
+return M