9 lines
181 B
Bash
9 lines
181 B
Bash
# macOS-specific zsh configuration
|
|
# Make a directory, then change into it
|
|
mkcd() {
|
|
[[ ! -d "${1}" ]] && gmkdir --parents -- "${1}"
|
|
cd "${1}" || return
|
|
}
|
|
|
|
autoload -Uz mkcd
|