emacs.d

bloated emacs configuration
git clone git://git.ckyln.com/~cem/emacs.d.git
Log | Files | Refs | README

commit 9d5e8a12453a99979a751a61574a213ed5159842
parent 4e238846b29bbe03a5138a827a0de13e665d5e01
Author: Cem Keylan <cem@ckyln.com>
Date:   Sat, 25 Jul 2020 11:04:25 +0300

org: cleanup variables

Diffstat:
Minit.org | 61+++++++++++++++++++++++++++++--------------------------------
1 file changed, 29 insertions(+), 32 deletions(-)

diff --git a/init.org b/init.org @@ -323,43 +323,40 @@ section. (org-directory "~/Org/") (org-default-notes-file "~/Org/refile.org") (org-agenda-span 'week) - (org-todo-keywords (quote ((sequence "TODO(t)" "NEXT(n)" "|" "DONE(d)") - (sequence "WAITING(w@/!)" "HOLD(h@/!)" "|" "CANCELLED(c@/!)" "PHONE" "MEETING")))) + (org-todo-keywords '((sequence "TODO(t)" "NEXT(n)" "|" "DONE(d)") + (sequence "WAITING(w@/!)" "HOLD(h@/!)" "|" "CANCELLED(c@/!)" "PHONE" "MEETING"))) (org-use-fast-todo-selection t) - (org-refile-targets (quote ((nil :maxlevel . 9) - (org-agenda-files :maxlevel . 9)))) + (org-refile-targets '((nil :maxlevel . 9) (org-agenda-files :maxlevel . 9))) (org-refile-use-outline-path t) (org-outline-path-complete-in-steps nil) - (org-refile-allow-creating-parent-nodes (quote confirm)) + (org-refile-allow-creating-parent-nodes 'confirm) (org-capture-templates - (quote (("t" "todo" entry (file "~/Org/refile.org") - "* TODO %?\n%U\n%a\n" :clock-in t :clock-resume t) - ("r" "respond" entry (file "~/Org/refile.org") - "* NEXT Respond to %:from on %:subject\nSCHEDULED: %t\n%U\n%a\n" :clock-in t :clock-resume t :immediate-finish t) - ("n" "note" entry (file "~/Org/refile.org") - "* %? :NOTE:\n%U\n%a\n" :clock-in t :clock-resume t) - ("j" "Journal" entry (file+datetree "~/Org/diary.org") - "* %?\n%U\n" :clock-in t :clock-resume t) - ("w" "org-protocol" entry (file "~/Org/refile.org") - "* TODO Review %c\n%U\n" :immediate-finish t) - ("m" "Meeting" entry (file "~/Org/refile.org") - "* MEETING with %? :MEETING:\n%U" :clock-in t :clock-resume t) - ("p" "Phone call" entry (file "~/Org/refile.org") - "* PHONE %? :PHONE:\n%U" :clock-in t :clock-resume t) - ("h" "Habit" entry (file "~/Org/refile.org") - "* NEXT %?\n%U\n%a\nSCHEDULED: %(format-time-string \"%<<%Y-%m-%d %a .+1d/3d>>\")\n:PROPERTIES:\n:STYLE: habit\n:REPEAT_TO_STATE: NEXT\n:END:\n")))) + '(("t" "todo" entry (file "~/Org/refile.org") + "* TODO %?\n%U\n%a\n" :clock-in t :clock-resume t) + ("r" "respond" entry (file "~/Org/refile.org") + "* NEXT Respond to %:from on %:subject\nSCHEDULED: %t\n%U\n%a\n" :clock-in t :clock-resume t :immediate-finish t) + ("n" "note" entry (file "~/Org/refile.org") + "* %? :NOTE:\n%U\n%a\n" :clock-in t :clock-resume t) + ("j" "Journal" entry (file+datetree "~/Org/diary.org") + "* %?\n%U\n" :clock-in t :clock-resume t) + ("w" "org-protocol" entry (file "~/Org/refile.org") + "* TODO Review %c\n%U\n" :immediate-finish t) + ("m" "Meeting" entry (file "~/Org/refile.org") + "* MEETING with %? :MEETING:\n%U" :clock-in t :clock-resume t) + ("p" "Phone call" entry (file "~/Org/refile.org") + "* PHONE %? :PHONE:\n%U" :clock-in t :clock-resume t) + ("h" "Habit" entry (file "~/Org/refile.org") + "* NEXT %?\n%U\n%a\nSCHEDULED: %(format-time-string \"%<<%Y-%m-%d %a .+1d/3d>>\")\n:PROPERTIES:\n:STYLE: habit\n:REPEAT_TO_STATE: NEXT\n:END:\n"))) (org-todo-keyword-faces - (quote (("TODO" :foreground "orange red" :weight bold) - ("NEXT" :foreground "cyan" :weight bold) - ("DONE" :foreground "spring green" :weight bold) - ("WAITING" :foreground "orange" :weight bold) - ("HOLD" :foreground "hot pink" :weight bold) - ("CANCELLED" :foreground "spring green" :weight bold) - ("MEETING" :foreground "spring green" :weight bold) - ("PHONE" :foreground "spring green" :weight bold)))) - (org-export-backends - (quote - (ascii beamer html latex man md groff))) + '(("TODO" :foreground "orange red" :weight bold) + ("NEXT" :foreground "cyan" :weight bold) + ("DONE" :foreground "spring green" :weight bold) + ("WAITING" :foreground "orange" :weight bold) + ("HOLD" :foreground "hot pink" :weight bold) + ("CANCELLED" :foreground "spring green" :weight bold) + ("MEETING" :foreground "spring green" :weight bold) + ("PHONE" :foreground "spring green" :weight bold))) + (org-export-backends '(ascii beamer html latex man md groff koma-letter)) :config (cheatsheet-add-group '"Org-mode Global" '(:key "C-c a" :description "open org-agenda")