I use dired
with (all-the-icons-dired which uses all-the-icons).
Current State:
.m
file presented with apple logo.
Goal: Change (override) icon of .m
file to same as icon of .matlab
file extension.
What I've tried So far: from all-the-icons-dired
's README:
So I try to add matlab logo with .m
file in the all-the-icons-data/file-icon-alist
variable. with
(use-package all-the-icons
:config
(add-to-list 'all-the-icons-data/file-icon-alist '("m" . "")) ;; is the matlab icon
)
(use-package all-the-icons-dired)
(add-hook 'dired-mode-hook 'all-the-icons-dired-mode)
However, There is still no change.
- Do you know what I'm doing wrong here?
- Should change another different variable?