From 711490252e1ba7aafb3a8d83171ca0344f6f6760 Mon Sep 17 00:00:00 2001 From: Roman Perepelitsa Date: Fri, 21 Aug 2020 11:08:14 +0200 Subject: [PATCH] enable extended_glob in p10k-{pure,robbyrussell}.zsh to fix `unset -m` --- config/p10k-pure.zsh | 2 +- 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'