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 #+title: My Emacs Config
#+author: William Ball #+author: William Ball
#+email: williampi103@gmail.com #+email: wball@ballcloud.cc
#+property: header-args:emacs-lisp :tangle ./init.el :mkdirp #+property: header-args:emacs-lisp :tangle ./init.el :mkdirp
* Basic Settings * Basic Settings
@ -148,24 +148,26 @@ Enable =use-package= integration
** Theme ** Theme
*** Modus Themes *** Modus Themes
#+begin_src emacs-lisp #+begin_src emacs-lisp
(use-package emacs ;; (use-package emacs
:ensure nil ;; :ensure nil
:config ;; :config
(require-theme 'modus-themes) ;; (require-theme 'modus-themes)
(setq modus-themes-italic-constructs t ;; (setq modus-themes-italic-constructs t
modus-themes-bold-constructs t ;; modus-themes-bold-constructs t
modus-themes-links '(no-underline background faint) ;; modus-themes-links '(no-underline background faint)
modus-themes-prompts '(bold intense) ;; modus-themes-prompts '(bold intense)
modus-themes-mode-line '(borderless accented moody) ;; modus-themes-mode-line '(borderless accented moody)
modus-themes-org-blocks 'gray-background ;; modus-themes-org-blocks 'gray-background
modus-themes-region '(bg-only no-extend)) ;; modus-themes-region '(bg-only no-extend))
(load-theme 'modus-operandi :no-confirm)) ;; (load-theme 'modus-operandi :no-confirm))
#+end_src #+end_src
*** Catpuccin *** Catpuccin
#+begin_src emacs-lisp #+begin_src emacs-lisp
(use-package catppuccin-theme (use-package catppuccin-theme
:init (setq catppuccin-flavor 'mocha) :init (setq catppuccin-flavor 'mocha)
:hook (after-init . (lambda () (load-theme 'catppuccin :no-confirm)))) :config
(load-theme 'catpuccin :no-confirm))
#+end_src
*** Italic Comments *** Italic Comments
#+begin_src emacs-lisp #+begin_src emacs-lisp