Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Icons in dired mode for Emacs

Tags:

emacs

dired

I would like to use the dired mode of emacs as my file browser. I am very much addicted to see an icon for file/folder rather that to see the extension and color. The icons give me a very quick visual feedback. I have searched the web for display of icons in dired but found none. So I wonder whether it is even possible to do this and if yes how?

To put my question clearly

How can I display icons for files and folders in dired mode of Emacs?

like image 984
Amol Gawai Avatar asked May 26 '09 04:05

Amol Gawai


1 Answers

all-the-icons-dired is a more current solution. Another option that looks quite nice is to use treemacs-icons-dired

I just switched to treemacs-icons-dired and recommend it. Simply install the package and add a mode hook like:

(add-hook 'dired-mode-hook 'treemacs-icons-dired-mode)
like image 154
Metropolis Avatar answered Oct 25 '22 19:10

Metropolis