From 7f774fe54103f5f9b31cd247d080d8b914468839 Mon Sep 17 00:00:00 2001 From: Lucas Sta Maria Date: Thu, 20 Jul 2023 18:27:19 -0700 Subject: [PATCH] fix: follow symlinks automatically in emacs Signed-off-by: Lucas Sta Maria --- .emacs.d/include/general.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.emacs.d/include/general.el b/.emacs.d/include/general.el index dfafaa5..bc4a3ef 100644 --- a/.emacs.d/include/general.el +++ b/.emacs.d/include/general.el @@ -46,6 +46,9 @@ ;; Auto file refresh (global-auto-revert-mode t) +;; Automatically follow symlinks +(setq vc-follow-symlinks t) + ;; Theme (add-to-list 'custom-theme-load-path "~/.emacs.d/themes") (load-theme 'nano t)