diff options
author | Timmy Keller <tjk@tjkeller.xyz> | 2022-11-28 07:45:16 -0600 |
---|---|---|
committer | Timmy Keller <tjk@tjkeller.xyz> | 2022-11-28 07:45:16 -0600 |
commit | e6f936b731fcb7fd0f29e46e2b460606c3d723e7 (patch) | |
tree | 2b266b845a0aabfb131d278710ee98b6f91db540 /zsh/zshrc | |
parent | 1973a92e5db6862586b91352d163fe9e827cc380 (diff) | |
download | dotconfig-e6f936b731fcb7fd0f29e46e2b460606c3d723e7.tar.xz dotconfig-e6f936b731fcb7fd0f29e46e2b460606c3d723e7.zip |
asdf
Diffstat (limited to 'zsh/zshrc')
-rwxr-xr-x | zsh/zshrc | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,7 @@ #!/usr/bin/env zsh +setopt +o NOMATCH # Non-existant wildcard matches won't produce an error + # Zsh scripts (load general scripts, then host specific scripts, then scripts prepended with !) for zscript in "$XDG_CONFIG_HOME/zsh/zscripts"{/[^\!]*.zsh,/hosts/*.$HOST.zsh,/!*.zsh}; do source "$zscript"; done 2>/dev/null @@ -24,7 +26,6 @@ setopt SHARE_HISTORY # Share history between zsh sessions # Input/output settings setopt INTERACTIVE_COMMENTS # Comments won't be interpreted in an interactive zsh session -setopt +o NOMATCH # Non-existant wildcard matches won't produce an error # tmp thing [ $TTY = /dev/tty2 ] && "/home/timmy/.local/opt/shell-color-scripts/colorscripts/$(ls /home/timmy/.local/opt/shell-color-scripts/colorscripts 2>/dev/null | shuf -n1)" 2>/dev/null |