17 lines
344 B
Bash
17 lines
344 B
Bash
# Start configuration added by Zim install {{{
|
|
#
|
|
# User configuration sourced by all invocations of the shell
|
|
#
|
|
|
|
# Define Zim location
|
|
: ${ZIM_HOME=${ZDOTDIR:-${HOME}}/.zim}
|
|
# }}} End configuration added by Zim install
|
|
|
|
if [[ -r "$HOME/.profile" ]]; then
|
|
. "$HOME/.profile"
|
|
fi
|
|
|
|
if [[ -r "$HOME/.cargo/env" ]]; then
|
|
. "$HOME/.cargo/env"
|
|
fi
|
|
|