diff options
Diffstat (limited to '.emacs.d/modules')
-rw-r--r-- | .emacs.d/modules/thanos-org.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.emacs.d/modules/thanos-org.el b/.emacs.d/modules/thanos-org.el index 888cf37..36c514d 100644 --- a/.emacs.d/modules/thanos-org.el +++ b/.emacs.d/modules/thanos-org.el @@ -40,7 +40,7 @@ org-hide-emphasis-markers nil ;;change to t to hide emphasis markers org-table-convert-region-max-lines 20000 org-log-done 'time - org-log-into-drawer t) + org-todo-keywords '((sequence "TODO(t)" "SEMINAR(s)" "LECTURE(l)" "DONE(d)"))) (define-key org-mode-map (kbd "C-c t") 'org-time-stamp-inactive) @@ -55,6 +55,7 @@ (python . t))) + (setf org-structure-template-alist '(("e" . "src emacs-lisp") ("p" . "src python") @@ -104,7 +105,7 @@ (define-key thanos/notes (kbd "i") 'org-roam-node-insert) ;; Journaling (define-prefix-command 'Journal) -(define-key thanos/notes (kbd "C-j") 'Journal) +(define-key thanos/notes (kbd "j") 'Journal) (define-key Journal (kbd "d") 'Journaling/dailies) (define-key Journal (kbd "C-c") 'org-roam-dailies-capture-today) (define-key Journal (kbd "C-t") 'org-roam-dailies-capture-tomorrow) |