.emacs.d/lisp/init-env.el
2024-12-28 10:59:10 +08:00

14 lines
307 B
EmacsLisp

;;; init-env.el --- Environment settings -*- lexical-binding: t -*-
;;; Commentary:
;;; Code:
(use-package exec-path-from-shell
:demand t
:config
(exec-path-from-shell-initialize))
(provide 'init-env)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; init-env.el ends here