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
+5
View File
@@ -39,6 +39,11 @@ if [ -z "$__PROFILE_DONE" ]; then
. $HOME/.profile . $HOME/.profile
fi fi
# Source .env to extend with secret/sensitive environment variables if it exists
if [ -r "$HOME/.env" ]; then
. "$HOME/.env"
fi
# Source aliases, if they exist # Source aliases, if they exist
if [ -f "$HOME/.aliases" ] && [ -r "$HOME/.aliases" ]; then if [ -f "$HOME/.aliases" ] && [ -r "$HOME/.aliases" ]; then