mirror of
https://github.com/correl/doom-modeline.git
synced 2024-11-23 19:19:50 +00:00
Update doom-modeline.el
This commit is contained in:
parent
4f95702d7f
commit
f27c4fe194
1 changed files with 4 additions and 1 deletions
|
@ -210,6 +210,8 @@ active.")
|
|||
(defface doom-modeline-evil-visual-state'((t (:inherit doom-modeline-buffer-file)))
|
||||
"Face for the visual state tag in evil state indicator.")
|
||||
|
||||
(defface doom-modeline-evil-replace-state'((t (:inherit doom-modeline-error)))
|
||||
"Face for the replace state tag in evil state indicator.")
|
||||
|
||||
;;
|
||||
;; Modeline library
|
||||
|
@ -1030,7 +1032,8 @@ See `mode-line-percent-position'.")
|
|||
((eq tag evil-insert-state-tag) 'doom-modeline-evil-insert-state)
|
||||
((eq tag evil-motion-state-tag) 'doom-modeline-evil-motion-state)
|
||||
((eq tag evil-visual-state-tag) 'doom-modeline-evil-visual-state)
|
||||
((eq tag evil-operator-state-tag) 'doom-modeline-evil-operator-state)))))))
|
||||
((eq tag evil-operator-state-tag) 'doom-modeline-evil-operator-state)
|
||||
((eq tag evil-replace-state-tag) 'doom-modeline-evil-replace-state)))))))
|
||||
|
||||
|
||||
;;
|
||||
|
|
Loading…
Reference in a new issue