back to catppuccin
This commit is contained in:
parent
d0b26a0962
commit
07ce1a0bfa
1 changed files with 16 additions and 14 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue