Skip to content

Instantly share code, notes, and snippets.

@jcouyang
Last active June 29, 2020 14:01
Show Gist options
  • Star 9 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jcouyang/d7cf6c8011b3b9c3f9a7 to your computer and use it in GitHub Desktop.
Save jcouyang/d7cf6c8011b3b9c3f9a7 to your computer and use it in GitHub Desktop.
disable emacs asking following git symbolink
; 当要打开一个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)
@nfedyashev
Copy link

Thank you! That was annoying :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment