summaryrefslogtreecommitdiff
path: root/emacs
diff options
context:
space:
mode:
Diffstat (limited to 'emacs')
-rw-r--r--emacs/.config/emacs/init.el8
1 files changed, 8 insertions, 0 deletions
diff --git a/emacs/.config/emacs/init.el b/emacs/.config/emacs/init.el
index 918dd80..2852df2 100644
--- a/emacs/.config/emacs/init.el
+++ b/emacs/.config/emacs/init.el
@@ -353,6 +353,14 @@
353 ;; This actually has to be hooked to after-init to be one of the first minor modes enabled 353 ;; This actually has to be hooked to after-init to be one of the first minor modes enabled
354 :hook (elpaca-after-init . envrc-global-mode)) 354 :hook (elpaca-after-init . envrc-global-mode))
355 355
356(use-package exec-path-from-shell
357 ;; If any other environment variables are needed, they can be added to exec-path-from-shell-variables
358 :ensure t
359 :custom
360 (exec-path-from-shell-variables '("PATH" "MANPATH" "SSH_AUTH_SOCK" "SSH_AGENT_PID" "GPG_AGENT_INFO" "LANG" "LC_CTYPE" "NIX_SSL_CERT_FILE" "NIX_PATH"))
361 :config
362 (exec-path-from-shell-initialize))
363
356(use-package forge 364(use-package forge
357 :ensure t 365 :ensure t
358 :after magit) 366 :after magit)