From 6a08ce31056286435d85c367a7f5ae918377587d Mon Sep 17 00:00:00 2001 From: David Runge Date: Thu, 28 Sep 2023 18:43:46 +0200 Subject: zsh: Move zsh/complist initialization after setting of path Signed-off-by: David Runge --- .config/zsh/.zshrc | 6 +++--- 1 file 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 -- cgit v1.2.3-54-g00ecf