summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThanos Apollo <[email protected]>2025-03-15 15:42:29 +0200
committerThanos Apollo <[email protected]>2025-03-15 15:42:29 +0200
commitc59163a03feebbd8166cc5fc739d2972d468cded (patch)
treefae782ba5620c9b3f0710b814892f2a29859b8c9
parent7158ae077afc1498e4ce412ec8984d84df7eda29 (diff)
emacs: Update theming.
-rw-r--r--.config/emacs/init.el23
1 files changed, 18 insertions, 5 deletions
diff --git a/.config/emacs/init.el b/.config/emacs/init.el
index 4e1ab36..7a6f502 100644
--- a/.config/emacs/init.el
+++ b/.config/emacs/init.el
@@ -242,7 +242,11 @@
org-hide-emphasis-markers nil ;;change to t to hide emphasis markers
org-table-convert-region-max-lines 20000
org-log-done 'time
- org-todo-keywords '((sequence "TODO" "DONE")))
+ org-startup-folded 'content
+ org-todo-keywords '((sequence "TODO" "|" "DONE" "FAILED"))
+ org-todo-keyword-faces
+ `(("FAILED" . (:inherit (modus-themes-fg-red-faint modus-themes-nuanced-red)))
+ ("DONE" . (:inherit (modus-themes-fg-green-faint modus-themes-nuanced-green)))))
(setf org-imenu-depth 3)
@@ -406,7 +410,7 @@
(let ((bg (face-background 'default)))
(custom-set-faces
`(fringe ((t :background ,bg :foreground ,bg)))
- `(window-divider ((t :background ,bg :foreground ,bg)))
+ `(window-divider ((t :background ,bg :foreground ,bg)))
`(window-divider-first-pixel ((t :background ,bg :foreground ,bg)))
`(window-divider-last-pixel ((t :background ,bg :foreground ,bg))))))
@@ -452,6 +456,12 @@
(when (display-graphic-p)
(use-package org-modern
:ensure t
+ :if (display-graphic-p)
+ :custom-face
+ (org-modern-progress-complete ((t (:background "#2f822f" :foreground "#c6daff"
+ :weight bold))))
+ (org-modern-progress-incomplete ((t (:background "#1e1e1e" :foreground "#c6daff"
+ :weight bold))))
:config
(setf org-modern-table nil
org-modern-todo nil
@@ -460,10 +470,13 @@
org-modern-star 'replace
org-modern-list '((?+ . "•")
(?- . "•"))
- org-modern-replace-stars "☧")
+ org-modern-replace-stars "☧"
+ org-modern-progress 6)
:hook ((org-mode . org-modern-mode)))
+
(use-package modus-themes
:ensure t
+ :if (display-graphic-p)
:config
(setf modus-themes-italic-constructs nil
modus-themes-bold-constructs nil
@@ -476,8 +489,7 @@
(selection . (semibold text-also underline))))
;; Palette overrides
(setf modus-vivendi-palette-overrides
- '((fg-line-number-active cyan-intense)
- ;; (bg-main "#1d2021") ;; grubox-hard
+ '(;; (bg-main "#1d2021") ;; grubox-hard
;; (bg-main "#191919") ;; 1337
;; (bg-main "#1d1f21") ;; tomorrow night
;; (bg-main "#151515") ;; jazz
@@ -486,6 +498,7 @@
;; (bg-main "#0D0E16") ;; Acario
;; (bg-main "#1c1e1f") ;; molokai
;; (bg-main "#171717") ;; badger
+ (fg-line-number-active cyan-intense)
(fg-heading-1 red)
(bg-line-number-inactive unspecified)
(bg-line-number-active unspecified)