Last active
June 29, 2020 14:01
-
-
Save jcouyang/d7cf6c8011b3b9c3f9a7 to your computer and use it in GitHub Desktop.
disable emacs asking following git symbolink
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; 当要打开一个symbolink的时候,如果symbollink到一个被git(或者其他vc)管理的文件时,emacs老问 | |
; Symbolic link to Git-controlled source file; follow link? (y or n) | |
; 配置下这个变量就好了 | |
(setq vc-follow-symlinks nil) | |
; nil 表示 不要问,no | |
; ask 表示每次都问 | |
; t 表示follow | |
;also 我不想要每次babel编译org的时候都问要不要跑elisp | |
(setq org-confirm-babel-evaluate nil) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you! That was annoying :)