diff options
Diffstat (limited to 'modeline.el')
-rw-r--r-- | modeline.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modeline.el b/modeline.el index bbf75b2..eb30b93 100644 --- a/modeline.el +++ b/modeline.el @@ -269,21 +269,21 @@ MAP is the local keymap of the text." (cond ((and buffer-file-name (buffer-modified-p)) (format-mode-line "M" (cond (active-p - 'doom-modeline-buffer-modified) + 'compilation-error) (t 'mode-line-inactive))))) ;; read-only? (cond (buffer-read-only (format-mode-line "R" (cond (active-p - 'doom-modeline-urgent) + 'modus-themes-fg-cyan-intense) (t 'mode-line-inactive))))) ;; narrow? (cond ((buffer-narrowed-p) (format-mode-line "N" (cond (active-p - 'doom-modeline-warning) + 'compilation-warning) (t 'mode-line-inactive)))))))) ;;;; Buffer position |