From 011607e21ba0e54d6169ee4cd9c00f06445e488e Mon Sep 17 00:00:00 2001 From: Micheal Smith Date: Thu, 30 Oct 2025 14:04:21 -0500 Subject: [PATCH] Moved look and feel section into its own file. --- config.org | 48 +---------------------------------------------- config/style.org | 49 ++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 50 insertions(+), 47 deletions(-) create mode 100644 config/style.org diff --git a/config.org b/config.org index 34ef18b..3af9090 100644 --- a/config.org +++ b/config.org @@ -455,53 +455,7 @@ of a project, and convey the results to various completion facilities. #+INCLUDE: "config/terminal.org" :minlevel 1 -* Look and Feel - -I've already touched on some appearance settings so far, but I feel themes and -such deserve their own space. - -** Themes - -I'm currently only using solarized light as it seems to be the most readable -theme. Perhaps I might toggle light/dark mode based on time, or lighting in -the future. - -#+begin_src emacs-lisp -(use-package color-theme-solarized - :ensure (:host github - :repo "sellout/emacs-color-theme-solarized" - :files ("*.el")) - :no-require t - :init - (customize-set-variable 'frame-background-mode 'dark) - (load-theme 'solarized t)) -#+end_src - -I like using catppuccin from time to time as well. - -#+begin_src emacs-lisp -(use-package catppuccin-theme :ensure t) -#+end_src - -** Modeline - -Doom emacs has a great modeline in my opinion so I'm using theirs almost -as is. It comes with some pretty nice customization features should it be -necessary. - -#+begin_src emacs-lisp -(use-package doom-modeline - :defer 2 - :config - (doom-modeline-mode) - :custom - (doom-modeline-time-analogue-clock nil) - (doom-modeline-time-icon nil) - (doom-modeline-unicode-fallback nil) - (doom-modeline-buffer-encoding 'nondefault) - (display-time-load-average nil) - (doom-modeline-icon t "Show icons in the modeline")) -#+end_src +#+INCLUDE: "config/style.org" :minlevel 1 * VCS diff --git a/config/style.org b/config/style.org new file mode 100644 index 0000000..3e6688d --- /dev/null +++ b/config/style.org @@ -0,0 +1,49 @@ +* Look and Feel + +I've already touched on some appearance settings so far, but I feel themes and +such deserve their own space. + +** Themes + +I'm currently only using solarized light as it seems to be the most readable +theme. Perhaps I might toggle light/dark mode based on time, or lighting in +the future. + +#+begin_src emacs-lisp +(use-package color-theme-solarized + :ensure (:host github + :repo "sellout/emacs-color-theme-solarized" + :files ("*.el")) + :no-require t + :init + (customize-set-variable 'frame-background-mode 'dark) + (load-theme 'solarized t)) +#+end_src + +I like using catppuccin from time to time as well. + +#+begin_src emacs-lisp +(use-package catppuccin-theme :ensure t) +#+end_src + +** Modeline + +Doom emacs has a great modeline in my opinion so I'm using theirs almost +as is. It comes with some pretty nice customization features should it be +necessary. + +#+begin_src emacs-lisp +(use-package doom-modeline + :defer 2 + :config + (doom-modeline-mode) + :custom + (doom-modeline-time-analogue-clock nil) + (doom-modeline-time-icon nil) + (doom-modeline-unicode-fallback nil) + (doom-modeline-buffer-encoding 'nondefault) + (display-time-load-average nil) + (doom-modeline-icon t "Show icons in the modeline")) +#+end_src + +