mirror of
https://github.com/correl/doom-modeline.git
synced 2024-11-23 19:19:50 +00:00
Improve: get icons of the current buffer.
This commit is contained in:
parent
3e7df26a30
commit
fc8b61021d
1 changed files with 5 additions and 2 deletions
|
@ -160,8 +160,11 @@ buffer where knowing the current project directory is important."
|
|||
(setq doom-modeline--buffer-file-icon
|
||||
(when (and doom-modeline-icon doom-modeline-major-mode-icon)
|
||||
(let* ((height (/ all-the-icons-scale-factor 1.3))
|
||||
(icon (if buffer-file-name
|
||||
(doom-modeline-icon-for-file buffer-file-name :height height)
|
||||
(icon (if (and buffer-file-name
|
||||
(all-the-icons-auto-mode-match?))
|
||||
(doom-modeline-icon-for-file
|
||||
(file-name-nondirectory buffer-file-name)
|
||||
:height height)
|
||||
(doom-modeline-icon-for-mode major-mode :height height))))
|
||||
(unless (symbolp icon)
|
||||
(propertize icon
|
||||
|
|
Loading…
Reference in a new issue