17 lines
322 B
Text
17 lines
322 B
Text
|
#!/usr/bin/env zsh
|
||
|
# Eryn Wells <eryn@erynwells.me>
|
||
|
|
||
|
function init_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_zsh_options "$@"
|