From 364aa2ba5d74f71b14a006412d3f4c6e562d40a1 Mon Sep 17 00:00:00 2001 From: Valentin Gehrke Date: Sat, 14 Oct 2017 12:56:33 +0200 Subject: [PATCH] emacs - undo-tree:customize --- emacs/.emacs.d/init.el | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/emacs/.emacs.d/init.el b/emacs/.emacs.d/init.el index e606395..71537fc 100644 --- a/emacs/.emacs.d/init.el +++ b/emacs/.emacs.d/init.el @@ -444,7 +444,11 @@ ;; Undo-Tree (use-package undo-tree - :delight) + :delight + :config + (global-undo-tree-mode) + (add-hook 'global-undo-tree-mode-hook + (lambda () (linum-mode -1)))) ;; Easy terminal (setq my/default-shell (or (executable-find "zsh") (executable-find "bash")))