1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-07-03 18:10:28 +00:00
prezto/functions/reload

15 lines
198 B
Plaintext
Raw Normal View History

2012-02-01 04:37:51 +00:00
#
# Reloads the Zsh configuration.
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
2011-10-12 03:13:58 +00:00
# Reloads ~/.zshrc.
local zshrc="$HOME/.zshrc"
if [[ -n "$1" ]]; then
zshrc="$1"
fi
source "$zshrc"