summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.emacs5
1 files changed, 4 insertions, 1 deletions
diff --git a/.emacs b/.emacs
index b851788..7027997 100644
--- a/.emacs
+++ b/.emacs
@@ -116,7 +116,6 @@
(delight 'auto-fill-function "⏎" t)
(delight 'auto-revert-mode "⟳" 'autorevert)
(delight 'auto-revert-tail-mode "–" 'autorevert)
-(delight 'compilation-in-progress "βš™" 'compile)
(delight 'eldoc-mode "πŸ“–" 'eldoc)
(delight 'footnote-mode "ΒΉ" 'footnote)
(delight 'flyspell-mode (propertize "πŸ–‹" 'face 'flyspell-incorrect) 'flyspell)
@@ -136,6 +135,10 @@
(delight 'with-editor-mode "⸎" 'with-editor)
;; TODO: Narrow (βŒ–, β›Ά)
+(if (version< emacs-version "27")
+ (delight 'compilation-in-progress "βš™" 'compile)
+ (message "TODO: tweak compilation lighter"))
+
(defun my/magit-mode-hook ()
(when window-system
(local-set-key [C-tab] 'other-window)