mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
Fix missing all-the-icons-material function
This commit is contained in:
@ -160,7 +160,7 @@ mode is detected.")
|
|||||||
|
|
||||||
(def-package! all-the-icons
|
(def-package! all-the-icons
|
||||||
:commands (all-the-icons-octicon all-the-icons-faicon all-the-icons-fileicon
|
:commands (all-the-icons-octicon all-the-icons-faicon all-the-icons-fileicon
|
||||||
all-the-icons-wicon all-the-icons-allthe-icon
|
all-the-icons-wicon all-the-icons-material all-the-icons-alltheicon
|
||||||
all-the-icons-install-fonts)
|
all-the-icons-install-fonts)
|
||||||
:init
|
:init
|
||||||
(defun doom*disable-all-the-icons-in-tty (orig-fn &rest args)
|
(defun doom*disable-all-the-icons-in-tty (orig-fn &rest args)
|
||||||
@ -169,6 +169,7 @@ mode is detected.")
|
|||||||
|
|
||||||
;; all-the-icons doesn't work in the terminal, so we "disable" it.
|
;; all-the-icons doesn't work in the terminal, so we "disable" it.
|
||||||
(advice-add #'all-the-icons-octicon :around #'doom*disable-all-the-icons-in-tty)
|
(advice-add #'all-the-icons-octicon :around #'doom*disable-all-the-icons-in-tty)
|
||||||
|
(advice-add #'all-the-icons-material :around #'doom*disable-all-the-icons-in-tty)
|
||||||
(advice-add #'all-the-icons-faicon :around #'doom*disable-all-the-icons-in-tty)
|
(advice-add #'all-the-icons-faicon :around #'doom*disable-all-the-icons-in-tty)
|
||||||
(advice-add #'all-the-icons-fileicon :around #'doom*disable-all-the-icons-in-tty)
|
(advice-add #'all-the-icons-fileicon :around #'doom*disable-all-the-icons-in-tty)
|
||||||
(advice-add #'all-the-icons-wicon :around #'doom*disable-all-the-icons-in-tty)
|
(advice-add #'all-the-icons-wicon :around #'doom*disable-all-the-icons-in-tty)
|
||||||
|
Reference in New Issue
Block a user