Eric Torres 3bf21a54e6 Revert "Rename zsh plugins so they are detected by zsh"
This reverts commit 4890ff8aaa7b06e46888bcf67311a17d089c8123.
2020-06-21 22:53:45 -07:00

9 lines
144 B
Bash

# Make a directory, then change into it
mkcd() {
[[ ! -d "${1}" ]] && mkdir --parents -- "${1}"
cd "${1}" || exit
}
autoload -Uz mkcd