[zsh] Give all the init-env functions consistent names

This commit is contained in:
Eryn Wells 2024-09-24 09:25:09 -07:00
parent e5505a7a69
commit f2144fcbed
8 changed files with 28 additions and 52 deletions

View file

@ -0,0 +1,10 @@
#!/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 "$@"