From 64616c549cdde2944d899e03e3990a1b5d5f15c0 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Mon, 27 Jun 2016 13:22:04 -0700 Subject: [PATCH] Set vc-follow-symlinks to t --- dotfiles/emacs.d/README.org | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dotfiles/emacs.d/README.org b/dotfiles/emacs.d/README.org index 5c7c759c..9a80124c 100644 --- a/dotfiles/emacs.d/README.org +++ b/dotfiles/emacs.d/README.org @@ -16,7 +16,7 @@ This makes it so that the file that is produced from tangling this file uses lex (replace-regexp-in-string "\n$" "" (shell-command-to-string "git config --get user.email"))) #+END_SRC -** auto-compile +** Setup auto-compile This is here because it needs to be activated as early as possible #+BEGIN_SRC emacs-lisp (use-package auto-compile @@ -248,6 +248,10 @@ This is set to true to disable the annoying audible bell that plays whenever the #+BEGIN_SRC emacs-lisp (setq visible-bell t) #+END_SRC +** Configure vc +#+BEGIN_SRC emacs-lisp + (setq vc-follow-symlinks t) +#+END_SRC ** Misc #+BEGIN_SRC emacs-lisp (defvar iedit-toggle-key-default nil)