Emacs personal configuration
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
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)