Make "." and "source" default to ~/.zshrc
This can potentially be done by doing horrible things with accept-line
:
function _accept-line() {
if [[ $BUFFER == "." ]]; then
BUFFER="source ~/.zshrc"
fi
zle .accept-line
}
zle -N accept-line _accept-line