zsh: set noextendglob to fix problems with '#' in nix

This commit is contained in:
PowerUser64 2024-06-19 00:52:49 -07:00
parent 8b84afc58b
commit d7ed5dfbcf

4
.zshrc
View file

@ -111,8 +111,8 @@ alias nix='noglob nix'
## ZSH Options >>> ## ZSH Options >>>
{ {
# setopt correct # Auto correct mistakes # setopt correct # Auto correct mistakes
setopt extendedglob # Extended globbing. Allows using regular expressions with * setopt noextendedglob # Extended globbing. Allows using regular expressions with *
[ -z "$TERMUX_VERSION" ] && [ -z "$TERMUX_VERSION" ] &&
setopt nocaseglob # Case insensitive globbing (and fix for termux) setopt nocaseglob # Case insensitive globbing (and fix for termux)
setopt rcexpandparam # Array expension with parameters setopt rcexpandparam # Array expension with parameters