10 lines
371 B
EmacsLisp
Executable File
10 lines
371 B
EmacsLisp
Executable File
;;; init.el -*- lexical-binding: t -*-
|
|
|
|
;; The default value is `ask', meaning that Emacs will ask for confirmation any
|
|
;; time you follow a symlink to a file under version control. The documentation
|
|
;; claims this is "dangerous, and probably not what you want;" I personally
|
|
;; don't see it, and it's usually what I want.
|
|
(setq vc-follow-symlinks t)
|
|
|
|
(provide 'syd/vc)
|