aboutsummaryrefslogtreecommitdiffstats
path: root/emacs
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2018-04-26 23:08:41 +0100
committerYann Herklotz <ymherklotz@gmail.com>2018-04-26 23:08:41 +0100
commit06af0989d9a5e58b36019b7644f2321dbf67a337 (patch)
tree0ade53e18cc89bbd66d0bec12328bbd060d62f2d /emacs
parent8af9f0e107c8096649ac8cc7c6ba41fcb6a20760 (diff)
downloaddotfiles-06af0989d9a5e58b36019b7644f2321dbf67a337.tar.gz
dotfiles-06af0989d9a5e58b36019b7644f2321dbf67a337.zip
Adding vim config
Diffstat (limited to 'emacs')
-rw-r--r--emacs/loader.org2
1 files changed, 2 insertions, 0 deletions
diff --git a/emacs/loader.org b/emacs/loader.org
index 83a8a2c..6adfd55 100644
--- a/emacs/loader.org
+++ b/emacs/loader.org
@@ -100,6 +100,7 @@ yes or no.
#+BEGIN_SRC emacs-lisp
(setq inhibit-startup-message t)
+ (setq vc-follow-symlinks t)
(tool-bar-mode -1)
(menu-bar-mode -1)
(fset 'yes-or-no-p 'y-or-n-p)
@@ -357,6 +358,7 @@ Setting up ~smtp~ to send messages using gmail.
*** Undo Tree
#+BEGIN_SRC emacs-lisp
(use-package undo-tree
+ :ensure t
:diminish undo-tree-mode
:config
(global-undo-tree-mode))