From 94a0bdb3b8d18be1eb87c30015a618fac529b81f Mon Sep 17 00:00:00 2001 From: Zelong Kuang Date: Mon, 15 Dec 2025 22:18:56 +1100 Subject: [PATCH] Update --- custom.el | 3 ++- lisp/init-ui.el | 28 ++++------------------------ 2 files changed, 6 insertions(+), 25 deletions(-) diff --git a/custom.el b/custom.el index acab254..51c94fc 100644 --- a/custom.el +++ b/custom.el @@ -5,7 +5,8 @@ ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. '(custom-safe-themes - '("b3db0d7354ef14156b4d16d406b85ef4441e45a54841e11a49d6bc4933eebf58" + '("2e8a28e18718c026ffc4a31acd65cf844d42c01f42b0d22b4eee8aa242a1b5d1" + "b3db0d7354ef14156b4d16d406b85ef4441e45a54841e11a49d6bc4933eebf58" default)) '(org-agenda-files '("~/org/workout.org")) '(package-selected-packages nil)) diff --git a/lisp/init-ui.el b/lisp/init-ui.el index 938ab66..f4da111 100644 --- a/lisp/init-ui.el +++ b/lisp/init-ui.el @@ -15,37 +15,17 @@ :hook (elpaca-after-init . solaire-global-mode)) (use-package ef-themes :ensure t - :init - ;; This makes the Modus commands listed below consider only the Ef - ;; themes. For an alternative that includes Modus and all - ;; derivative themes (like Ef), enable the - ;; `modus-themes-include-derivatives-mode' instead. The manual of - ;; the Ef themes has a section that explains all the possibilities: - ;; - ;; - Evaluate `(info "(ef-themes) Working with other Modus themes or taking over Modus")' - ;; - Visit - (ef-themes-take-over-modus-themes-mode 1) - :bind - (("" . modus-themes-rotate) - ("C-" . modus-themes-select) - ("M-" . modus-themes-load-random)) + :defer nil :config - ;; All customisations here. - (setq modus-themes-mixed-fonts t) - (setq modus-themes-italic-constructs t) - - ;; Finally, load your theme of choice (or a random one with - ;; `modus-themes-load-random', `modus-themes-load-random-dark', - ;; `modus-themes-load-random-light'). - (modus-themes-load-theme 'ef-day)) + (load-theme 'ef-day)) (use-package rainbow-delimiters :hook ((prog-mode . rainbow-delimiters-mode) (typst-ts-mode . rainbow-delimiters-mode) (foo-mode . rainbow-delimiters-mode))) -(use-package doom-modeline - :hook (elpaca-after-init . doom-modeline-mode)) +;; (use-package doom-modeline +;; :hook (elpaca-after-init . doom-modeline-mode)) (use-package minions :hook elpaca-after-init)