mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
And get rid of: - dash, doesn't need to be, packages which depend on it, should have it listed as a dependency - smart-mode-line, don't need it anymore as I use the doom-modeline package to stylize the modeline.
17 lines
378 B
EmacsLisp
17 lines
378 B
EmacsLisp
;;; siren-core-env.el --- jimeh's Emacs Siren: Environment variable setup.
|
|
|
|
;;; Commentary:
|
|
|
|
;; Setup for various environment variables to ensure external programs are
|
|
;; available.
|
|
|
|
;;; Code:
|
|
|
|
(use-package exec-path-from-shell
|
|
:config
|
|
(when (memq window-system '(mac ns x))
|
|
(exec-path-from-shell-initialize)))
|
|
|
|
(provide 'siren-core-env)
|
|
;;; siren-core-env.el ends here
|