Browse Source

Call after init

master
10sr 5 years ago
parent
commit
04b36f5538
Signed by: 10sr GPG Key ID: 7BEC428194130EB2
1 changed files with 9 additions and 7 deletions
  1. +9
    -7
      emacs.el

+ 9
- 7
emacs.el View File

@@ -473,13 +473,15 @@ found, otherwise returns nil."

(when (safe-require-or-eval 'diminish)
;; FIXME: Eval after enabling mode
(diminish 'recently-mode)
(diminish 'editorconfig-mode)
(diminish 'auto-highlight-symbol-mode)
(diminish 'global-whitespace-mode)
(diminish 'which-key-mode)
(diminish 'page-break-lines-mode)
(diminish 'highlight-indentation-mode))
(call-after-init
(lambda ()
(diminish 'recently-mode)
(diminish 'editorconfig-mode)
(diminish 'auto-highlight-symbol-mode)
(diminish 'global-whitespace-mode)
(diminish 'which-key-mode)
(diminish 'page-break-lines-mode)
(diminish 'highlight-indentation-mode))))

;; http://www.geocities.jp/simizu_daisuke/bunkei-meadow.html#frame-title



Loading…
Cancel
Save