# Bash logout file.
-source_debug "sourcing ~/.bash/logout"
+source_debug ". ~/.bash/logout"
# Load logout file usable by all shells.
source_config ~/.shell "" logout
-source_debug "finished sourcing ~/.bash/logout"
+source_debug ". ~/.bash/logout (done)"
# vim: ft=sh
}
fi
-source_debug "sourcing ~/.bash/rc"
+source_debug ". ~/.bash/rc"
# Load global env file for current hostname (first part before a dot) or
# global env.local.
# Load rc file for current hostname (first part before a dot) or rc.local.
source_config ~/.bash host rc $host
-source_debug "finished sourcing ~/.bash/env"
+source_debug ". ~/.bash/rc (done)"
# vim: ft=sh
}
-source_debug "sourcing ~/.shell/env"
+source_debug ". ~/.shell/env"
# Use UTF-8 encoding in the terminal. Don't use LC_ALL as it's used for
unset source_file source_file_local
}
-source_debug "finished sourcing ~/.shell/env"
+source_debug ". ~/.shell/env (done)"
# vim: ft=sh
}
fi
-source_debug "sourcing ~/.zsh/env"
+source_debug ". ~/.zsh/env"
# Make sure elements in PATH are unique.
# Load env file for current hostname (first part before a dot) or env.local.
source_config ~/.zsh host env $host
-source_debug "finished sourcing ~/.zsh/env"
+source_debug ". ~/.zsh/env (done)"
# vim: ft=zsh
# Zsh logout file.
-source_debug "sourcing ~/.zsh/logout"
+source_debug ". ~/.zsh/logout"
# Load logout file usable by all shells.
source_config ~/.shell "" logout
-source_debug "finished sourcing ~/.zsh/logout"
+source_debug ". ~/.zsh/logout (done)"
# vim: ft=zsh
# Zsh configuration file.
-source_debug "sourcing ~/.zsh/rc"
+source_debug ". ~/.zsh/rc"
# MISCELLANEOUS SETTINGS
fi
-source_debug "finished sourcing ~/.zsh/rc"
+source_debug ". ~/.zsh/rc (done)"
# vim: ft=zsh