Emacs personal configuration
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12 行
320B

  1. (require-package 'exec-path-from-shell)
  2. (after-load 'exec-path-from-shell
  3. (dolist (var '("SSH_AUTH_SOCK" "SSH_AGENT_PID" "GPG_AGENT_INFO" "LANG" "LC_CTYPE"))
  4. (add-to-list 'exec-path-from-shell-variables var)))
  5. (when (memq window-system '(mac ns))
  6. (exec-path-from-shell-initialize))
  7. (provide 'init-exec-path)