From 04a4e91b2195f6b3b3bf51387b41131e96883060 Mon Sep 17 00:00:00 2001 From: Tim McCarthy Date: Mon, 14 Apr 2025 15:53:30 -0700 Subject: [PATCH] Add vc-follow-symlinks to suppress annoying warning --- emacs/init.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/emacs/init.el b/emacs/init.el index 83fd070..7eaa453 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -572,6 +572,8 @@ ;; Visually mark the line the cursor is on (global-hl-line-mode 1) +(setq vc-follow-symlinks t) + ;; Enable repeat mode. Keymaps are defined through use-package's :repeat-map directive. (repeat-mode 1)