aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--custom.el2
-rw-r--r--lisp/init-editing-utils.el14
2 files changed, 15 insertions, 1 deletions
diff --git a/custom.el b/custom.el
index d7c9288..9794780 100644
--- a/custom.el
+++ b/custom.el
@@ -11,7 +11,7 @@
'(anzu-search-threshold 1000)
'(package-selected-packages
(quote
- (highlight-indent-guides yaml-mode whitespace-cleanup-mode sublime-themes sml-modeline smarty-mode smart-mode-line-powerline-theme scss-mode sass-mode rainbow-mode prettier-js pkgbuild-mode pcre2el nlinum markdown-mode less-css-mode flycheck editorconfig anzu ac-php))))
+ (undo-tree pip-requirements jedi neotree highlight-indent-guides yaml-mode whitespace-cleanup-mode sublime-themes sml-modeline smarty-mode smart-mode-line-powerline-theme scss-mode sass-mode rainbow-mode prettier-js pkgbuild-mode pcre2el nlinum markdown-mode less-css-mode flycheck editorconfig anzu ac-php))))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
diff --git a/lisp/init-editing-utils.el b/lisp/init-editing-utils.el
index 5f65ef7..9593607 100644
--- a/lisp/init-editing-utils.el
+++ b/lisp/init-editing-utils.el
@@ -32,5 +32,19 @@
(setq-default
indent-tabs-mode nil)
+
+;;----------------------------------------------------------------------------
+;; Diminish - is minor modes with no modeline display
+;;----------------------------------------------------------------------------
+(require-package 'diminish)
+
+;;----------------------------------------------------------------------------
+;; Undo-tree
+;;----------------------------------------------------------------------------
+(require-package 'undo-tree)
+(global-undo-tree-mode)
+(diminish 'undo-tree-mode)
+
+;;----------------------------------------------------------------------------
(myemacs/elapsed-time)
(provide 'init-editing-utils)