jtbm37 / all-the-icons-dired

Adds dired support to all-the-icons
GNU General Public License v3.0
197 stars 26 forks source link

Icons not colored #54

Closed iris-garcia closed 3 years ago

iris-garcia commented 3 years ago

Not sure if this is because of an update in all-the-icons package, but I don't see colored icons anymore in dired.

image

iris-garcia commented 3 years ago

Just found the variable all-the-icons-dired-monochrome sorry...

saerosV commented 2 years ago

For anyone using Doom Emacs who comes across this "problem" in the future, go to ~/.emacs.d/modules/emacs/dired/config.el search for the (use-package! all-the-icons-dired ...) macro, and add (setq all-the-icons-dired-monochrome nil) to your :init symbol. If you don't have it, just create one.

It should look like this:


(use-package! all-the-icons-dired
  :when (featurep! +icons)
  :hook (dired-mode . all-the-icons-dired-mode)
  :init (setq all-the-icons-dired-monochrome nil)
  ...)