mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
16 lines
346 B
EmacsLisp
16 lines
346 B
EmacsLisp
;;; siren-env.el --- jimeh's Emacs Siren: Environment variable setup.
|
|
|
|
;;; Commentary:
|
|
|
|
;; Setup for various environment variables to ensure external programs are
|
|
;; available.
|
|
|
|
;;; Code:
|
|
|
|
(require 'exec-path-from-shell)
|
|
(when (memq window-system '(mac ns x))
|
|
(exec-path-from-shell-initialize))
|
|
|
|
(provide 'siren-env)
|
|
;;; siren-env.el ends here
|