diff options
author | Kyle Meyer <kyle@kyleam.com> | 2016-05-14 19:10:32 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2016-05-14 19:10:32 -0400 |
commit | 09b178c45ce8baf10d363f4ebea24c8df0e7e5eb (patch) | |
tree | 2241b228eeb2ea4e1cbae37ae64743fa7a4c31be | |
parent | fb28ce2eb08d43168a474cac35ea6c3f9407fe8d (diff) | |
download | emacs.d-09b178c45ce8baf10d363f4ebea24c8df0e7e5eb.tar.gz |
Set vc-follow-symlinks before vc loads
vc isn't necessarily loaded even when vc-hooks (where vc-follow-symlinks
is located) is. Setting this variable in :config seemed to work before,
so I think there must have been a recent change in Emacs.
-rw-r--r-- | init.el | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -793,7 +793,7 @@ (use-package vc :defer t - :config + :init (setq vc-follow-symlinks t)) (use-package vc-git |