back to catppuccin

This commit is contained in:
William Ball 2025-09-13 11:02:13 -04:00
parent d0b26a0962
commit 07ce1a0bfa
No known key found for this signature in database

View file

@ -1,6 +1,6 @@
#+title: My Emacs Config
#+author: William Ball
#+email: williampi103@gmail.com
#+email: wball@ballcloud.cc
#+property: header-args:emacs-lisp :tangle ./init.el :mkdirp
* Basic Settings
@ -148,24 +148,26 @@ Enable =use-package= integration
** 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
*** Catpuccin
#+begin_src emacs-lisp
(use-package catppuccin-theme
:init (setq catppuccin-flavor 'mocha)
:hook (after-init . (lambda () (load-theme 'catppuccin :no-confirm))))
:config
(load-theme 'catpuccin :no-confirm))
#+end_src
*** Italic Comments
#+begin_src emacs-lisp