diff options
author | Raúl Benencia <id@rbenencia.name> | 2024-09-29 16:19:23 -0700 |
---|---|---|
committer | Raúl Benencia <id@rbenencia.name> | 2024-09-29 16:20:47 -0700 |
commit | 50da7ec169380b08407c08b0b620a0752f7f0660 (patch) | |
tree | 0a5494139e8f448f0f0ce32a7836cf2a4d1a2c8f | |
parent | aaa0fbad927d5700bb682839e0904f6b5b996747 (diff) |
emacs: vc-follow-symlinks set to t
-rw-r--r-- | .emacs.d/init.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 248abcb..eee3a56 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -131,8 +131,8 @@ (setq desktop-base-file-name "desktop") (desktop-save-mode 1) -;; Set this to t if you don't understand what it means -(setq vc-follow-symlinks nil) +;; It's easier to get to magit if symlinks are followed. +(setq vc-follow-symlinks t) ;; dired (use-package dired-preview |