dotfiles/zsh/func/init-rc-zsh-options

17 lines
328 B
Text
Raw Normal View History

2021-12-31 11:54:55 -08:00
#!/usr/bin/env zsh
# Eryn Wells <eryn@erynwells.me>
2024-09-30 11:13:10 -07:00
function init-rc-zsh-options
2021-12-31 11:54:55 -08:00
{
# Report seconds since shell was invoked in milliseconds
typeset -F SECONDS
# See zshoptions(1)
setopt EXTENDED_GLOB \
MULTIOS \
AUTO_REMOVE_SLASH \
COMPLETE_IN_WORD
}
2024-09-30 11:13:10 -07:00
init-rc-zsh-options "$@"