Files
emacs/config/style.org
2025-11-18 03:10:56 -06:00

1.2 KiB

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.

(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 'light)
  (load-theme 'solarized t))

I like using catppuccin from time to time as well.

(use-package catppuccin-theme :ensure t)

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.

(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"))