diff options
author | David Runge <dave@sleepmap.de> | 2023-09-28 18:43:46 +0200 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2023-09-28 18:43:46 +0200 |
commit | 6a08ce31056286435d85c367a7f5ae918377587d (patch) | |
tree | e966bc31942218855a87e371109aba43d6ccf2d6 | |
parent | d37052e0ad522daa73da7f3264fa9cf57bdead77 (diff) | |
download | dotfiles-6a08ce31056286435d85c367a7f5ae918377587d.tar.gz dotfiles-6a08ce31056286435d85c367a7f5ae918377587d.tar.bz2 dotfiles-6a08ce31056286435d85c367a7f5ae918377587d.tar.xz dotfiles-6a08ce31056286435d85c367a7f5ae918377587d.zip |
zsh: Move zsh/complist initialization after setting of path
Signed-off-by: David Runge <dave@sleepmap.de>
-rw-r--r-- | .config/zsh/.zshrc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.config/zsh/.zshrc b/.config/zsh/.zshrc index c1c1146..741497b 100644 --- a/.config/zsh/.zshrc +++ b/.config/zsh/.zshrc @@ -249,13 +249,13 @@ unsetopt CLOBBER # # TODO: Add conditional to check for availability +# include completions path in directory +fpath=(/usr/share/zsh/site-functions/ $fpath) + # Completion # zmodload zsh/complist -# include completions path in directory -fpath=(/usr/share/zsh/site-functions/ $fpath) - # Load and initialize the completion system ignoring insecure directories. autoload -Uz compinit && compinit -i |