Compare commits

...

3 Commits

Author SHA1 Message Date
nixy c8c98b541f Fix spacing 2021-04-08 18:14:31 +00:00
nixy 7efd916969 Merge branch 'master' of https://git.nixy.moe/nixy/dotfiles 2021-04-08 18:13:25 +00:00
nixy 56e2f5f7a7 Add sourcing of extra global home stored environment variables 2021-04-08 18:11:43 +00:00
+6 -1
View File
@@ -36,7 +36,12 @@ export PROMPT_COMMAND="history -n; history -w; history -c; history -r; $PROMPT_C
# Source profile, if it hasn't already been loaded
if [ -z "$__PROFILE_DONE" ]; then
. $HOME/.profile
. $HOME/.profile
fi
# Source .env to extend with secret/sensitive environment variables if it exists
if [ -r "$HOME/.env" ]; then
. "$HOME/.env"
fi