diff options
author | Roman Perepelitsa <roman.perepelitsa@gmail.com> | 2020-08-21 12:08:14 +0300 |
---|---|---|
committer | Roman Perepelitsa <roman.perepelitsa@gmail.com> | 2020-08-21 12:08:14 +0300 |
commit | 711490252e1ba7aafb3a8d83171ca0344f6f6760 (patch) | |
tree | fa94b9c23a93b5c40860c1ec7e260a05fe28bc55 | |
parent | 525e2545db9470bad88b6365b97df80fcfa9aff4 (diff) |
enable extended_glob in p10k-{pure,robbyrussell}.zsh to fix `unset -m`
-rw-r--r-- | config/p10k-pure.zsh | 2 | ||||
-rw-r--r-- | config/p10k-robbyrussell.zsh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/config/p10k-pure.zsh b/config/p10k-pure.zsh index 88b8d604..566c030d 100644 --- a/config/p10k-pure.zsh +++ b/config/p10k-pure.zsh @@ -23,7 +23,7 @@ 'builtin' 'setopt' 'no_aliases' 'no_sh_glob' 'brace_expand' () { - emulate -L zsh + emulate -L zsh -o extended_glob # Unset all configuration options. unset -m '(POWERLEVEL9K_*|DEFAULT_USER)~POWERLEVEL9K_GITSTATUS_DIR' diff --git a/config/p10k-robbyrussell.zsh b/config/p10k-robbyrussell.zsh index fe797215..a4cb8b2d 100644 --- a/config/p10k-robbyrussell.zsh +++ b/config/p10k-robbyrussell.zsh @@ -18,7 +18,7 @@ 'builtin' 'setopt' 'no_aliases' 'no_sh_glob' 'brace_expand' () { - emulate -L zsh + emulate -L zsh -o extended_glob # Unset all configuration options. unset -m '(POWERLEVEL9K_*|DEFAULT_USER)~POWERLEVEL9K_GITSTATUS_DIR' |