summaryrefslogtreecommitdiffstats
path: root/init.org
diff options
context:
space:
mode:
authorAmin Bandali <amin@aminb.org>2018-04-28 16:22:36 -0400
committerAmin Bandali <amin@aminb.org>2018-04-28 16:22:36 -0400
commit7538956fa487b757a40080ee145b9e2abb4142c6 (patch)
treed6430e691a59fbf7e4b1830818457f6a12deaeb0 /init.org
parent967b0a8269f01ba3020df0725a56615826993df3 (diff)
downloadconfigs-7538956fa487b757a40080ee145b9e2abb4142c6.tar.gz
configs-7538956fa487b757a40080ee145b9e2abb4142c6.tar.xz
configs-7538956fa487b757a40080ee145b9e2abb4142c6.zip
[emacs] enable exec-path-from-shell
Diffstat (limited to 'init.org')
-rw-r--r--init.org19
1 files changed, 9 insertions, 10 deletions
diff --git a/init.org b/init.org
index 88f5e24..55e8269 100644
--- a/init.org
+++ b/init.org
@@ -264,7 +264,6 @@ contain the mess.
`((".*" ,(no-littering-expand-var-file-name "auto-save/") t))))
#+end_src
-
** Custom file (=custom.el=)
I'm not planning on using the custom file much, but even so, I
@@ -287,15 +286,15 @@ Let's use [[https://github.com/purcell/exec-path-from-shell][exec-path-from-shel
in my shell.
#+begin_src emacs-lisp
-;; (use-package exec-path-from-shell
-;; :defer 1
-;; :init
-;; (setq exec-path-from-shell-check-startup-files nil)
-;; :config
-;; (exec-path-from-shell-initialize)
-;; ;; while we're at it, let's fix access to our running ssh-agent
-;; (exec-path-from-shell-copy-env "SSH_AGENT_PID")
-;; (exec-path-from-shell-copy-env "SSH_AUTH_SOCK"))
+(use-package exec-path-from-shell
+ :defer 1
+ :init
+ (setq exec-path-from-shell-check-startup-files nil)
+ :config
+ (exec-path-from-shell-initialize)
+ ;; while we're at it, let's fix access to our running ssh-agent
+ (exec-path-from-shell-copy-env "SSH_AGENT_PID")
+ (exec-path-from-shell-copy-env "SSH_AUTH_SOCK"))
#+end_src
** Server