10 lines
170 B
Bash
10 lines
170 B
Bash
#!/usr/bin/env zsh
|
|
# Eryn Wells <eryn@erynwells.me>
|
|
|
|
function init-zsh-helpers
|
|
{
|
|
alias local-array="local -a"
|
|
alias local-map="local -A"
|
|
}
|
|
|
|
init-zsh-helpers "$@"
|