config

Personal configuration.
git clone git://code.dwrz.net/config
Log | Files | Refs

commit 436c043eb04cc4e899d8d445acb11a29b6cdabbe
parent eabddbe611b9921d057dec3991f9f997f14c2af0
Author: dwrz <dwrz@dwrz.net>
Date:   Sun, 31 Dec 2023 16:45:44 +0000

Update Emacs init

Diffstat:
Memacs/init.el | 33++++++++++++++++++++-------------
1 file changed, 20 insertions(+), 13 deletions(-)

diff --git a/emacs/init.el b/emacs/init.el @@ -194,7 +194,8 @@ (use-package corfu :bind (:map corfu-map ("RET" . nil) - ("C-<tab>" . corfu-quit)) + ("C-<tab>" . corfu-quit) + ("<end>" . corfu-quit)) :custom (corfu-auto t) (corfu-auto-delay 0.1) @@ -487,11 +488,15 @@ org-lowest-priority 3 org-src-fontify-natively t org-tags-column 0 - org-todo-keywords '((sequence "NEXT(n)" + org-todo-keywords '((sequence "|" "SOMEDAY-MAYBE(s)") + (sequence "|" "EVENT(v)") + (sequence "PROJECT(p)" + "|" + "COMPLETE(o)") + (sequence "NEXT(n)" "IN-PROGRESS(i)" - "WAITING(w)" "|" - "SOMEDAY-MAYBE(s)" - "EVENT(v)" + "WAITING(w)" + "|" "DELEGATED(e)" "CANCELED(c)" "DONE(d)"))) @@ -592,14 +597,16 @@ (?2 . (:foreground "#eab700")) (?3 . (:foreground "#718c00")))) (setq org-todo-keyword-faces - '(("NEXT" . "#c82829") - ("IN-PROGRESS" . "#718c00") - ("WAITING" . "#eab700") - ("DONE" . "#4271ae") - ("EVENT" . "#3e999f") - ("DELEGATED" . "#969896") - ("CANCELED" . "#a3685a") - ("SOMEDAY-MAYBE" . "#8959a8"))) + '(("NEXT" . (:foreground "#c82829")) + ("IN-PROGRESS" . (:foreground "#718c00")) + ("WAITING" . (:foreground "#eab700")) + ("DONE" . (:foreground "#4271ae")) + ("EVENT" . (:foreground "#3e999f")) + ("DELEGATED" . (:foreground "#969896")) + ("CANCELED" . (:foreground "#a3685a")) + ("SOMEDAY-MAYBE" . (:foreground "#8959a8")) + ("PROJECT" . (:foreground "#c82829" :weight bold)) + ("COMPLETE" . (:foreground "#718c00" :weight bold))) :defer t :ensure nil)