diff options
author | Matthew Lemon <lemon@matthewlemon.com> | 2019-12-19 12:57:16 +0000 |
---|---|---|
committer | Matthew Lemon <lemon@matthewlemon.com> | 2019-12-19 12:57:16 +0000 |
commit | 4e9eac1e981ae375003a9508fd6e0f634bd7b8b9 (patch) | |
tree | 5cad93ef3ffbbe1901b45c582ef03cb7206bf1c8 /init.el | |
parent | 8f8b7606e83f01ca7f27391ea5cd3ef7684ece30 (diff) |
got rid of CAL and changed region colour
Diffstat (limited to '')
-rw-r--r-- | init.el | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -32,6 +32,9 @@ ;;(setq set-face-background hl-line-face "pale goldenrod") (hl-line-mode 1) +;; Region colour +(set-face-attribute 'region nil :background "#633" :foreground "#ffffff") + ;; Deal with history (setq savehist-file "~/.emacs.d/savehist") (savehist-mode +1) @@ -305,7 +308,7 @@ "* %?\nEntered on %U\n %i\n %a") ("c" "Calendar entries") ("cw" "Work Calendar" entry (file+headline "~/Nextcloud/org/cal.org" "DfT") - "* CAL %?\n%^t\n") + "* %?\n%^t\n") ("ch" "Home Calendar" entry (file+headline "~/Nextcloud/org/cal.org" "Home") "* %?\n%^t\n") ("e" "Emacs Tip" entry (file+headline "~/Nextcloud/org/emacs-tips.org" "Emacs Tips") @@ -316,7 +319,7 @@ (setq org-todo-keywords (quote ((sequence "TODO(t)" "NEXT(n)" "|" "DONE(d!)") (sequence "WAITING(w@/!)" "HOLD(h@/!)" "|" "CANCELLED(c@/!)") - (sequence "PHONE(o)" "MEETING(m)" "PROJECT(p)" "CAL(i)")))) + (sequence "PHONE(o)" "MEETING(m)" "PROJECT(p)")))) (setq org-todo-keyword-faces (quote (("TODO" :foreground "red" :weight bold) @@ -327,7 +330,6 @@ ("CANCELLED" :foreground "forest green" :weight bold) ("MEETING" :foreground "forest green" :weight bold) ("PROJECT" :foreground "OrangeRed2" :weight bold) - ("CAL" :foreground "DarkOliveGreen" :weight bold) ("PHONE" :foreground "forest green" :weight bold)))) ;; tag stuff automatically dependent on a change of state |