mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
Set default exec-path & shell-file-name
In case doom-load-envvars-file is called when these vars have local bindings.
This commit is contained in:
11
core/core.el
11
core/core.el
@ -422,11 +422,12 @@ in interactive sessions, nil otherwise (but logs a warning)."
|
||||
(line-beginning-position))
|
||||
(point-max))))))
|
||||
(setenv var value)))))
|
||||
(setq exec-path (append (split-string (getenv "PATH")
|
||||
(if IS-WINDOWS ";" ":"))
|
||||
(list exec-directory))
|
||||
shell-file-name (or (getenv "SHELL")
|
||||
shell-file-name))
|
||||
(setq-default
|
||||
exec-path (append (split-string (getenv "PATH")
|
||||
(if IS-WINDOWS ";" ":"))
|
||||
(list exec-directory))
|
||||
shell-file-name (or (getenv "SHELL")
|
||||
shell-file-name))
|
||||
t))
|
||||
|
||||
(defun doom-initialize (&optional force-p)
|
||||
|
Reference in New Issue
Block a user