diff options
| -rw-r--r-- | .emacs | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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) |
