2021-12-31 11:54:55 -08:00
|
|
|
#!/usr/bin/env zsh
|
|
|
|
# Eryn Wells <eryn@erynwells.me>
|
|
|
|
|
|
|
|
function init_zsh_options
|
|
|
|
{
|
2022-01-22 09:11:53 -08:00
|
|
|
ShellLog 'Setting shell options'
|
2022-01-22 09:03:43 -08:00
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
init_zsh_options "$@"
|