diff --git a/emacs/.config/emacs/Emacs.org b/emacs/.config/emacs/Emacs.org index f0b5114..b04ba6e 100644 --- a/emacs/.config/emacs/Emacs.org +++ b/emacs/.config/emacs/Emacs.org @@ -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