blob: e0e5fdf6de20dbf859f2d63b0a3ffd8e1cf81e91 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
;;; init-load-env-vars.el --- .Emacs Configuration -*- lexical-binding: t -*-
;;; Commentary:
;;
;;; Code:
;; load-env-vars
(use-package load-env-vars
:config
(load-env-vars "~/.emacs.d/.env"))
(provide 'init-load-env-vars)
;;; init-load-env-vars.el ends here
|