16 lines
328 B
Bash
16 lines
328 B
Bash
#!/usr/bin/env zsh
|
|
# Eryn Wells <eryn@erynwells.me>
|
|
|
|
function init-rc-zsh-options
|
|
{
|
|
# Report seconds since shell was invoked in milliseconds
|
|
typeset -F SECONDS
|
|
|
|
# See zshoptions(1)
|
|
setopt EXTENDED_GLOB \
|
|
MULTIOS \
|
|
AUTO_REMOVE_SLASH \
|
|
COMPLETE_IN_WORD
|
|
}
|
|
|
|
init-rc-zsh-options "$@"
|