1
0

fix completion cache location bug

This commit is contained in:
2025-02-13 22:10:39 +01:00
parent eae51694ac
commit fc15f313c1
2 changed files with 1 additions and 8 deletions

View File

@@ -11,9 +11,6 @@
# source ./gambit.zsh
# Load more completions
fpath=($DOTFILES/zsh/plugins/zsh-completions/src $fpath)
# Should be called before compinit
zmodload zsh/complist
@@ -45,7 +42,7 @@ zstyle ':completion:*' completer _extensions _complete _approximate
# Use cache for commands using cache
zstyle ':completion:*' use-cache on
zstyle ':completion:*' cache-path "~/.cache/zsh/.zcompcache"
zstyle ':completion:*' cache-path "$HOME/.cache/zsh/.zcompcache"
# Complete the alias when _expand_alias is used as a function
zstyle ':completion:*' complete true

File diff suppressed because one or more lines are too long