# vim:ft=zsh
# Make zsh exit on escape
# © 2013 Axel Wagner and contributors (see also: LICENSE)
function _shellex_exit {
    exit
}
zle -N _shellex_exit
bindkey '^[' _shellex_exit

