10 lines
303 B
EmacsLisp
10 lines
303 B
EmacsLisp
|
(use-package all-the-icons
|
||
|
:if (display-graphic-p)
|
||
|
:commands all-the-icons-install-fonts
|
||
|
:init
|
||
|
(unless (find-font (font-spec :name "all-the-icons"))
|
||
|
(all-the-icons-install-fonts t)))
|
||
|
(use-package all-the-icons-dired
|
||
|
:if (display-graphic-p)
|
||
|
:hook (dired-mode . all-the-icons-dired-mode))
|