jaypei / emacs-neotree

A emacs tree plugin like NerdTree for Vim.
GNU General Public License v3.0
1.56k stars 147 forks source link

Separate face for opened directories, faces for icons of directories #297

Closed palikar closed 1 year ago

palikar commented 6 years ago

I've added three more faces for the customizing the look of directories depending whether they are opened or not. Atom has similar feature and I really wanted it in emacs. With my changes I managed to make neo-tree to look like this screenshot from 2018-06-23 18-24-29

with settings like this

(face-spec-set 'neo-file-link-face '((t (:foreground "light sky blue"))))
(face-spec-set 'neo-open-dir-link-face '((t (:foreground "gold" :underline t :height 1.1))))
(face-spec-set 'neo-dir-link-face '((t (:underline t :height 1.1))))
(face-spec-set 'neo-dir-icon-face '((t (:foreground "light sky blue"))))
(face-spec-set 'neo-open-dir-icon-face '((t (:foreground "gold"))))