complete-computing-environment/doom_modeline.org

1.2 KiB

Doom Modeline

(provide 'cce/doom-modeline)

I'm trying something new, coming back to a modeline customization suite. This time, we find ourselves with the Doom Mode Line, which I use in a pretty "out of the box" configuration for now. I add icon representations for EXWM buffers so that they're not just default "document" icons.

(use-package all-the-icons)
(use-package doom-modeline
  :after all-the-icons
  :config
  (setq doom-modeline-unicode-fallback t
        doom-modeline-enable-word-count nil
        doom-modeline-minor-modes t)
  (doom-modeline-mode 1))
  (add-to-list 'all-the-icons-mode-icon-alist
               '(exwm-mode all-the-icons-faicon "desktop"
                 :height 1.0 :face all-the-icons-purple))