diff options
author | Kyle Meyer <kyle@kyleam.com> | 2014-03-09 23:03:23 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2014-03-09 23:03:23 -0400 |
commit | c986959cb2945ba21092371cbe45610c083eb033 (patch) | |
tree | 51db9c7a76da5f52c84d252c960b23423adc768a | |
parent | 42fa27cc635d1b3923a9c48d8a1f027a790380ce (diff) | |
download | emacs.d-c986959cb2945ba21092371cbe45610c083eb033.tar.gz |
Revert "Disable vc for git"
I disabled vc for git in b453a51 because I didn't think I used any
features of vc and didn't see the point of it taking up space on the
mode line. But now I'm missing the option to follow version-controlled
symlinks, so I'm turning it back on.
-rw-r--r-- | lisp/init-git.el | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lisp/init-git.el b/lisp/init-git.el index 4c73502..3ed7caf 100644 --- a/lisp/init-git.el +++ b/lisp/init-git.el @@ -30,9 +30,4 @@ Useful for non-source code repos (e.g., Org mode note files)." magit-completing-read-function 'magit-ido-completing-read magit-log-show-margin nil) - -;; Don't use vc for git. -(setq vc-handled-backends - (delete 'Git vc-handled-backends)) - (provide 'init-git) |