From 8002af07c4b643981ddca22bc2ee25739f3135e7 Mon Sep 17 00:00:00 2001 From: Mitch Tishmack Date: Sun, 8 Mar 2015 14:38:53 -0500 Subject: [PATCH] Add color-identifiers-mode and undo-tree. --- emacs/.emacs.d/emacs.org | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/emacs/.emacs.d/emacs.org b/emacs/.emacs.d/emacs.org index 264cb91..2a19467 100644 --- a/emacs/.emacs.d/emacs.org +++ b/emacs/.emacs.d/emacs.org @@ -883,6 +883,32 @@ Need to make haskell source be all pretty. ) #+END_SRC +*** undo-tree + +Make undo more useful, and treelike. + +#+BEGIN_SRC emacs-lisp + (use-package undo-tree + :ensure t + :init + (global-undo-tree-mode) + :bind + ("C-x u" . undo-tree-visualize) + ) +#+END_SRC + +*** color-identifiers-mode + +Color variables for easy identification, its like a rainbow puked over everything opened in prog-mode-hook. + +#+BEGIN_SRC emacs-lisp + (use-package color-identifiers-mode + :ensure t + :config + (add-hook 'prog-mode-hook 'color-identifiers-mode) + ) +#+END_SRC + * mode related *** common defaults