Update file dot_zshrc
This commit is contained in:
parent
94cd23929e
commit
d15b66d6f4
1 changed files with 4 additions and 1 deletions
|
@ -59,8 +59,11 @@ setopt PROMPT_SUBST
|
||||||
setopt SHARE_HISTORY
|
setopt SHARE_HISTORY
|
||||||
|
|
||||||
# ZSH completion system
|
# ZSH completion system
|
||||||
autoload -Uz compinit
|
if [ ! -d "$XDG_CACHE_HOME/zsh" ]; then
|
||||||
|
mkdir -p "$XDG_CACHE_HOME/zsh"
|
||||||
|
fi
|
||||||
compinit -d "$XDG_CACHE_HOME/zsh/zcompdump-$ZSH_VERSION"
|
compinit -d "$XDG_CACHE_HOME/zsh/zcompdump-$ZSH_VERSION"
|
||||||
|
autoload -Uz compinit
|
||||||
zstyle ':completion:*:*:*:*:*' menu select
|
zstyle ':completion:*:*:*:*:*' menu select
|
||||||
zstyle ':completion:*' cache-path "$XDG_CACHE_HOME/zsh/zcompcache"
|
zstyle ':completion:*' cache-path "$XDG_CACHE_HOME/zsh/zcompcache"
|
||||||
zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}'
|
zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}'
|
||||||
|
|
Loading…
Reference in a new issue