summaryrefslogtreecommitdiffstats
path: root/local.el
diff options
context:
space:
mode:
Diffstat (limited to 'local.el')
-rw-r--r--local.el9
1 files changed, 9 insertions, 0 deletions
diff --git a/local.el b/local.el
index 6351573..678999e 100644
--- a/local.el
+++ b/local.el
@@ -34,5 +34,14 @@
(defalias 'ravi-license-header 'ravi/normal-license-header)
+;; Org-capture set-up
+(defun ravi/setup-org-capture ()
+ (add-to-list 'org-capture-templates
+ '("n" ;`org-capture' binding + n
+ "Note"
+ entry
+ (file "") ;empty string defaults to `org-default-notes-file'
+ "\n* %?\n Context:\n %i\n Entered on %U")))
+
(provide 'local)
;;; local.el ends here