Files
dotemacs/lisp/ux/paths.el
2022-01-09 21:19:46 +01:00

13 lines
269 B
EmacsLisp

;;; paths.el --- Configure system paths in Emacs -*- lexical-binding: t; -*-
;;; Commentary:
;;; Code:
(use-package exec-path-from-shell
:if (memq window-system '(mac ns x))
:config
(exec-path-from-shell-initialize))
(provide 'ux/paths)
;;; paths.el ends here