aboutsummaryrefslogtreecommitdiffstats
path: root/modules/init-load-env-vars.el
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2022-03-05 04:06:33 +0800
committerJesús <heckyel@hyperbola.info>2022-03-05 04:06:33 +0800
commitaba5e59b02d4e4565e0d25ec5179af6d87d53157 (patch)
tree01ec4831108ad790a77dd8a0c70fb17aef575c65 /modules/init-load-env-vars.el
parent3ddd2efd64dbdef0eff428cc5b24ed087da8a32c (diff)
downloademacs-personal-aba5e59b02d4e4565e0d25ec5179af6d87d53157.tar.lz
emacs-personal-aba5e59b02d4e4565e0d25ec5179af6d87d53157.tar.xz
emacs-personal-aba5e59b02d4e4565e0d25ec5179af6d87d53157.zip
Add .env to custom configuration
Diffstat (limited to 'modules/init-load-env-vars.el')
-rw-r--r--modules/init-load-env-vars.el12
1 files changed, 12 insertions, 0 deletions
diff --git a/modules/init-load-env-vars.el b/modules/init-load-env-vars.el
new file mode 100644
index 0000000..e0e5fdf
--- /dev/null
+++ b/modules/init-load-env-vars.el
@@ -0,0 +1,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