* Global undo-tree (again)

* several config things copied from @magnars
This commit is contained in:
Vincent Ambo 2013-08-05 16:18:56 +02:00
parent edb2ca67d3
commit 2d27485f36
2 changed files with 36 additions and 4 deletions

View file

@ -41,11 +41,19 @@
;; Always highlight matching brackets
(show-paren-mode 1)
;; Undo-Tree at all times!
(undo-tree-mode)
;; Represent undo-history as an actual tree (visualize with C-x u)
(setq undo-tree-mode-lighter "")
(require 'undo-tree)
(global-undo-tree-mode)
;; Keep track of recent files
(recentf-mode)
;; Enable Nyan mode
(nyan-mode 1)
;; Easily navigate sillycased words
(global-subword-mode 1)
;; Transparently open compressed files
(auto-compression-mode t)