diff options
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/init.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/emacs/init.el b/emacs/init.el index 7d67d90..db85235 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -925,6 +925,11 @@ necessary variables are set." :mode ((rx (or ".lisp" ".cl") eos) . common-lisp-mode)) +(defvar note/directory "~/Documents/Notes" + "The directory in which notes are stored.") +(defvar note/file-ending "md" + "The file ending for new notes.") + (defun note/new (&optional other-window) (interactive "P") (let* ((uid (format-time-string "%Y-%m-%d-%H%M%S")) |