theme tweaks again

This commit is contained in:
William Ball 2026-01-06 15:31:50 -08:00
parent 3498cdde7f
commit 6aba5e23c1

View file

@ -92,7 +92,7 @@
:default-height 190
:bold-weight extrabold)
(t
:default-family "Adwaita Mono"
:default-family "Iosevka Nerd Font"
:default-weight normal
:variable-pitch-family "Libertinus Serif")))
(fontaine-set-preset 'regular))
@ -109,18 +109,18 @@
** Theme
*** Modus Themes
#+begin_src emacs-lisp
(use-package emacs
:ensure nil
:config
(require-theme 'modus-themes)
(setq modus-themes-italic-constructs t
modus-themes-bold-constructs t
modus-themes-links '(no-underline background faint)
modus-themes-prompts '(bold intense)
modus-themes-mode-line '(borderless accented moody)
modus-themes-org-blocks 'gray-background
modus-themes-region '(bg-only no-extend))
(load-theme 'modus-operandi :no-confirm))
;; (use-package emacs
;; :ensure nil
;; :config
;; (require-theme 'modus-themes)
;; (setq modus-themes-italic-constructs t
;; modus-themes-bold-constructs t
;; modus-themes-links '(no-underline background faint)
;; modus-themes-prompts '(bold intense)
;; modus-themes-mode-line '(borderless accented moody)
;; modus-themes-org-blocks 'gray-background
;; modus-themes-region '(bg-only no-extend))
;; (load-theme 'modus-operandi :no-confirm))
#+end_src
*** Autodark
#+begin_src emacs-lisp
@ -132,10 +132,10 @@
#+end_src
*** Catpuccin
#+begin_src emacs-lisp
;; (use-package catppuccin-theme
;; :init (setq catppuccin-flavor 'mocha)
;; :config
;; (load-theme 'catppuccin :no-confirm))
(use-package catppuccin-theme
:init (setq catppuccin-flavor 'mocha)
:config
(load-theme 'catppuccin :no-confirm))
#+end_src
** Ultra Scroll
#+begin_src emacs-lisp