From fa25023586cb94a1abf4fd3ff95ebe7c3c8ead09 Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Sun, 16 Feb 2020 14:40:26 +0100 Subject: Remove prezto --- zsh/functions/dotenv.zsh | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 zsh/functions/dotenv.zsh (limited to 'zsh/functions/dotenv.zsh') diff --git a/zsh/functions/dotenv.zsh b/zsh/functions/dotenv.zsh new file mode 100644 index 0000000..7594e6c --- /dev/null +++ b/zsh/functions/dotenv.zsh @@ -0,0 +1,6 @@ +# Dotenv Loading utility function +dotenv () { + set -a + [ -f ./.env ] && . ./.env + set +a +} -- cgit