blob: 1968f0d99cb6e8a260bae827152d7764fcace75b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
;;; init-diminish.el --- .Emacs Configuration -*- lexical-binding: t -*-
;;; Commentary:
;;
;;; Code:
;;----------------------------------------------------------------------------
;; Diminish - is minor modes with no modeline display
;;----------------------------------------------------------------------------
(use-package diminish)
;; Hide undo-tree-mode
(diminish 'undo-tree-mode)
(provide 'init-diminish)
;; End:
;;; init-diminish.el ends here
|