Added Diminish and Undo-tree

This commit is contained in:
Jesús 2018-10-02 16:16:57 -05:00
parent d4c43d0417
commit 85066f0c6a
No known key found for this signature in database
GPG Key ID: F6EE7BC59A315766
2 changed files with 15 additions and 1 deletions

View File

@ -11,7 +11,7 @@
'(anzu-search-threshold 1000) '(anzu-search-threshold 1000)
'(package-selected-packages '(package-selected-packages
(quote (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
;; custom-set-faces was added by Custom. ;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful. ;; If you edit it by hand, you could mess it up, so be careful.

View File

@ -32,5 +32,19 @@
(setq-default (setq-default
indent-tabs-mode nil) 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) (myemacs/elapsed-time)
(provide 'init-editing-utils) (provide 'init-editing-utils)