diff options
author | Matthew Lemon <lemon@matthewlemon.com> | 2019-12-12 11:11:01 +0000 |
---|---|---|
committer | Matthew Lemon <lemon@matthewlemon.com> | 2019-12-12 11:11:01 +0000 |
commit | 63183039f65ea45b5bd77fd97015d3c52e0bdffb (patch) | |
tree | b65406700dd5990c9b338a33b2104f3a094a012d /configuration.org | |
parent | bfa0b3bb3ff0f2b0a5adbdd2896ce2d497175872 (diff) |
changed theme, font, removed evil from help modes, added PROJECT, amended agenda dispatcher
Diffstat (limited to '')
-rw-r--r-- | configuration.org | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/configuration.org b/configuration.org index 9f43b6c..0ba4aa9 100644 --- a/configuration.org +++ b/configuration.org @@ -84,8 +84,8 @@ down in this file, some are used with the default configuration. (tool-bar-mode -1) (tooltip-mode -1) (menu-bar-mode -1) - (add-to-list 'default-frame-alist '(font . "Hack-10")) - (load-theme 'whiteboard) + (add-to-list 'default-frame-alist '(font . "Hack-14")) + (load-theme 'manoj-dark) #+END_SRC ** Gnu Elpa TLS Fix Emacs 26.1 (for example in Debian Buster) requests the GNU Elpa repo @@ -488,12 +488,9 @@ Emacs, use =display-line-numbers-mode=, because it's _much_ faster. (org-agenda-files :maxlevel . 9)))) (setq org-agenda-custom-commands - (quote (("N" "Agenda and NEXT TODOs" - ((agenda "") - (todo "NEXT"))) - ("y" "Agenda and All TODOS" - ((agenda "") - (alltodo "")))))) + '(("N" "Agenda and NEXT TODOs" ((agenda "") (todo "NEXT"))) + ("y" "Agenda and All TODOS" ((agenda "") (alltodo "") (todo "PROJECT"))) + ("p" "Agenda and PROJECTs" ((agenda "") (todo "PROJECT"))))) #+END_SRC ** Capture #+BEGIN_SRC emacs-lisp @@ -511,7 +508,7 @@ Emacs, use =display-line-numbers-mode=, because it's _much_ faster. #+BEGIN_SRC emacs-lisp (setq org-todo-keywords (quote ((sequence "TODO(t)" "NEXT(n)" "|" "DONE(d)") - (sequence "WAITING(w@/!)" "HOLD(h@/!)" "|" "CANCELLED(c@/!)" "PHONE" "MEETING")))) + (sequence "WAITING(w@/!)" "HOLD(h@/!)" "|" "CANCELLED(c@/!)" "PHONE" "MEETING" "PROJECT")))) (setq org-todo-keyword-faces (quote (("TODO" :foreground "red" :weight bold) @@ -521,6 +518,7 @@ Emacs, use =display-line-numbers-mode=, because it's _much_ faster. ("HOLD" :foreground "magenta" :weight bold) ("CANCELLED" :foreground "forest green" :weight bold) ("MEETING" :foreground "forest green" :weight bold) + ("PROJECT" :foreground "OrangeRed2" :weight bold) ("PHONE" :foreground "forest green" :weight bold)))) ;; tag stuff automatically dependent on a change of state @@ -559,7 +557,6 @@ Emacs, use =display-line-numbers-mode=, because it's _much_ faster. (setq helm-move-to-line-cycle-in-source t) (setq helm-scroll-amount 5) (setq helm-ff-file-name-history-use-recentf t) -(helm-mode 1) #+END_SRC * Search / Completion * =evil-mode= @@ -653,6 +650,8 @@ cursor forward use =C-t= or =grn= and backward =grp=. Finally use forge-pullreq-list-mode forge-topic-list-mode dired-mode + help-mode + info tide-references-mode image-dired-mode image-dired-thumbnail-mode |