From b95398d1a353cf6b66927fe98c82f5bbd0ab4f4b Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Sun, 31 Jul 2022 03:01:09 -0500 Subject: [PATCH] fix: enable completion for profile --- .config/zsh/config/profile/init.zsh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.config/zsh/config/profile/init.zsh b/.config/zsh/config/profile/init.zsh index f0f6323..2cab27e 100644 --- a/.config/zsh/config/profile/init.zsh +++ b/.config/zsh/config/profile/init.zsh @@ -1,18 +1,18 @@ #!/usr/bin/env zsh configure() { - + autoload -U +X bashcompinit && bashcompinit + autoload -U +X compinit && compinit } init() { + configure local wkdir="${BASE_ZSH_CONFIG_DIR}/config/profile" source "${wkdir}/profile/options.zsh" source "${wkdir}/profile/env.zsh" source "${wkdir}/profile/functions.zsh" source "${wkdir}/profile/aliases.zsh" - - configure } init