summary refs log tree commit diff stats
path: root/init.el
diff options
context:
space:
mode:
Diffstat (limited to 'init.el')
-rw-r--r--init.el13
1 files changed, 11 insertions, 2 deletions
diff --git a/init.el b/init.el index 99fdc6a..18ab4ea 100644 --- a/init.el +++ b/init.el
@@ -649,7 +649,7 @@
649 tab-bar-tab-name-ellipsis truncate-string-ellipsis 649 tab-bar-tab-name-ellipsis truncate-string-ellipsis
650 tab-bar-show t 650 tab-bar-show t
651 tab-bar-close-button-show t 651 tab-bar-close-button-show t
652 tab-bar-close-button (propertize " ◦ " 652 tab-bar-close-button (propertize " ✕ "
653 'display t 653 'display t
654 'close-tab t) 654 'close-tab t)
655 tab-bar-new-button (propertize "+ " 'display t)) 655 tab-bar-new-button (propertize "+ " 'display t))
@@ -1444,7 +1444,8 @@ See also `crux-reopen-as-root-mode'."
1444 :host github :repo "duckwork/machine.el")) 1444 :host github :repo "duckwork/machine.el"))
1445 (:option machine-default-font "DejaVu Sans Mono" 1445 (:option machine-default-font "DejaVu Sans Mono"
1446 machine-variable-pitch-font "DejaVu Sans") 1446 machine-variable-pitch-font "DejaVu Sans")
1447 (machine-settings-load)) 1447 (+with-ensure-after-init ; So that they override anything here.
1448 (machine-settings-load)))
1448 1449
1449(setup (:straight macrostep) 1450(setup (:straight macrostep)
1450 (:require macrostep) 1451 (:require macrostep)
@@ -1505,6 +1506,14 @@ See also `crux-reopen-as-root-mode'."
1505 modus-themes-bold-constructs t 1506 modus-themes-bold-constructs t
1506 modus-themes-italic-constructs t 1507 modus-themes-italic-constructs t
1507 modus-themes-headings '((t . (background)))) 1508 modus-themes-headings '((t . (background))))
1509 (dotimes (facen-1 8)
1510 (let ((facen (1+ facen-1)))
1511 (custom-set-faces
1512 `(,(intern (format "org-level-%s" facen))
1513 ((t :inherit
1514 (,(intern (format "modus-themes-heading-%s" facen))
1515 fixed-pitch))
1516 :now)))))
1508 (dawn-schedule #'modus-themes-load-operandi 1517 (dawn-schedule #'modus-themes-load-operandi
1509 #'modus-themes-load-vivendi)) 1518 #'modus-themes-load-vivendi))
1510 1519