forked from colonelpanic/dotfiles
Skip exec-path-from-shell when use-package missing
This commit is contained in:
parent
8be7ec47a0
commit
7769b6f4c7
@ -87,14 +87,16 @@ These definitions silence the byte-compiler.
|
|||||||
** exec-path-from-shell
|
** exec-path-from-shell
|
||||||
Sets environment variables by starting a shell.
|
Sets environment variables by starting a shell.
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package exec-path-from-shell
|
(eval-and-compile
|
||||||
:config
|
(when (fboundp 'use-package)
|
||||||
(progn
|
(use-package exec-path-from-shell
|
||||||
(setq exec-path-from-shell-check-startup-files nil)
|
:config
|
||||||
(add-to-list 'exec-path-from-shell-variables "GOPATH")
|
(progn
|
||||||
(add-to-list 'exec-path-from-shell-variables "ENVIRONMENT_SETUP_DONE")
|
(setq exec-path-from-shell-check-startup-files nil)
|
||||||
(add-to-list 'exec-path-from-shell-variables "PYTHONPATH")
|
(add-to-list 'exec-path-from-shell-variables "GOPATH")
|
||||||
(exec-path-from-shell-initialize)))
|
(add-to-list 'exec-path-from-shell-variables "ENVIRONMENT_SETUP_DONE")
|
||||||
|
(add-to-list 'exec-path-from-shell-variables "PYTHONPATH")
|
||||||
|
(exec-path-from-shell-initialize)))))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
** Non-Forking Shell Command To String
|
** Non-Forking Shell Command To String
|
||||||
Emacs' built in ~shell-command-to-string~ function has the downside that it forks a new shell process every time it is executed. This means that any shell startup cost is incurred when this function is called.
|
Emacs' built in ~shell-command-to-string~ function has the downside that it forks a new shell process every time it is executed. This means that any shell startup cost is incurred when this function is called.
|
||||||
|
Loading…
Reference in New Issue
Block a user