about summary refs log tree commit diff
path: root/lua/create_note.lua
diff options
context:
space:
mode:
authoriurii plugatarov <[email protected]>2024-08-02 23:14:43 +0200
committeriurii plugatarov <[email protected]>2024-08-02 23:14:43 +0200
commitd2f6073cb4e9c4026041288cd5cab2b2a0337c5a (patch)
treee56f52a63696410a3227e08577779a0a491a53bb /lua/create_note.lua
parentf4a1319352d466308cd85eb1263aef9fd2c54293 (diff)
downloadsketchbook.nvim-d2f6073cb4e9c4026041288cd5cab2b2a0337c5a.tar.gz
move to lua dir
Diffstat (limited to 'lua/create_note.lua')
-rw-r--r--lua/create_note.lua20
1 files changed, 20 insertions, 0 deletions
diff --git a/lua/create_note.lua b/lua/create_note.lua
new file mode 100644
index 0000000..d85e267
--- /dev/null
+++ b/lua/create_note.lua
@@ -0,0 +1,20 @@
+local M = {}
+
+function M.create_new_note()
+  local notes_dir = vim.g.notes_directory or "~/notes/"
+  local filename = os.date "%Y-%m-%d_%H-%M-%S" .. ".md"
+  local filepath = vim.fn.expand(notes_dir) .. filename
+  local title = "Title " .. os.date "%Y-%m-%d %H:%M:%S"
+  local template = {
+    "# " .. title,
+    "",
+  }
+  local file = io.open(filepath, "w")
+  for _, line in ipairs(template) do
+    file:write(line .. "\n")
+  end
+  file:close()
+  vim.cmd("edit " .. filepath)
+end
+
+return M