From a2888c02a2a1bb9553c0a07b727e6edc48c94185 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Fri, 18 Aug 2023 17:01:29 -0600 Subject: [PATCH] [Emacs] Display custom times --- dotfiles/emacs.d/README.org | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/dotfiles/emacs.d/README.org b/dotfiles/emacs.d/README.org index 0d89da80..63f1bd4d 100644 --- a/dotfiles/emacs.d/README.org +++ b/dotfiles/emacs.d/README.org @@ -3046,11 +3046,18 @@ The following is taken from [[https://github.com/syl20bnr/spacemacs/blob/a650877 org-edit-src-content-indentation 0 org-src-preserve-indentation t) + (defun imalison:set-display-custom-times () + (setq org-display-custom-times t)) + (setq org-goto-interface 'outline-path-completion org-goto-max-level 10 org-export-headline-levels 3) (add-hook 'org-mode-hook 'imalison:disable-linum-mode) (add-hook 'org-mode-hook (lambda () (setq org-todo-key-trigger t))) + (add-hook 'org-mode-hook 'imalison:set-display-custom-times) + (add-hook 'org-agenda-mode-hook 'imalison:disable-linum-mode) + (add-hook 'org-agenda-mode-hook 'imalison:set-display-custom-times) + (add-hook 'org-agenda-mode-hook 'imalison:disable-linum-mode) (cl-defun imalison:org-time-condition-met-p (&key (property "CREATED") (days 30) (future nil)) @@ -3171,12 +3178,6 @@ The following is taken from [[https://github.com/syl20bnr/spacemacs/blob/a650877 (setq org-todo-repeat-to-state "TODO") - (defun imalison:org-todo-save (&rest args) - (when (eq major-mode 'org-mode) - (save-buffer))) - - (advice-add 'org-todo :after 'imalison:org-todo-save) - (setq org-agenda-span 10) (setq org-agenda-start-day "-2d")