1
0
Fork 0

Remove date in note files

This commit is contained in:
Daniele Tricoli 2023-03-21 17:00:36 +01:00
parent c082464016
commit 380cfa4e3a

View file

@ -168,11 +168,13 @@
(org-roam-capture-templates
'(("d" "default" plain
"%?"
:if-new (file+head "%<%Y%m%d%H%M%S>-${slug}.org" "#+title: ${title}\n")
:if-new (file+head "${slug}.org"
"#+title: ${title}\n#+date: %u\n#+lastmod: \n\n")
:unnarrowed t)
("p" "projects" plain
"%?\n* Tasks\n\n** TODO tasks go here!"
:if-new (file+head "projects/${slug}.org" "#+title: ${title}\n#+filetags: :has_todos:project:")
:if-new (file+head "projects/${slug}.org"
"#+title: ${title}\n#+filetags: :has_todos:project:\n#+date: %u\n#+lastmod: \n\n")
:unnarrowed t)))
:bind (("C-c n l" . org-roam-buffer-toggle)
("C-c n f" . org-roam-node-find)