mirror of
https://github.com/correl/dotfiles.git
synced 2024-11-16 03:00:08 +00:00
[emacs] Add undo-tree
This commit is contained in:
parent
45a8630adc
commit
9aa2316e5b
1 changed files with 12 additions and 1 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue