[emacs] Add undo-tree

This commit is contained in:
Correl Roush 2017-12-11 15:56:36 -05:00
parent 45a8630adc
commit 9aa2316e5b

View file

@ -135,6 +135,17 @@ shown around the search results.
(setq helm-swoop-speed-or-color t) (setq helm-swoop-speed-or-color t)
) )
#+END_SRC #+END_SRC
** Undo-Tree
Visualize and traverse undo history as a directed graph.
#+name: packages
#+BEGIN_SRC emacs-lisp
(use-package undo-tree
:ensure t
:diminish undo-tree-mode
:config (global-undo-tree-mode))
#+END_SRC
* Coding * Coding
** Languages ** Languages
*** Lisps *** Lisps
@ -341,7 +352,7 @@ installed:
(use-package elpy (use-package elpy
:ensure t :ensure t
:after python-mode :after python-mode
:commands (elpy-enable)) :config (elpy-enable))
#+END_SRC #+END_SRC
**** Cython **** Cython
#+name: programming #+name: programming