Files
.emacs.d/core/siren-core-env.el
Jim Myhrberg e703f4ef53 chore(packages): Refactor package setups in within core
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.
2020-02-15 19:13:28 +00:00

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