aboutsummaryrefslogtreecommitdiffstats
path: root/modules/init-diminish.el
diff options
context:
space:
mode:
Diffstat (limited to 'modules/init-diminish.el')
-rw-r--r--modules/init-diminish.el17
1 files changed, 17 insertions, 0 deletions
diff --git a/modules/init-diminish.el b/modules/init-diminish.el
new file mode 100644
index 0000000..1968f0d
--- /dev/null
+++ b/modules/init-diminish.el
@@ -0,0 +1,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