From 32df12a6df99496d4efb5e1ca1db45ec7ed93264 Mon Sep 17 00:00:00 2001 From: bretello Date: Wed, 10 Apr 2024 14:44:17 +0200 Subject: [PATCH] zsh: fix sourcing of color functions, move to extras dir --- brethil_dotfile.sh | 3 ++- colors.zsh => extras/colors.zsh | 0 completion_style.zsh => extras/completion_style.zsh | 0 3 files changed, 2 insertions(+), 1 deletion(-) rename colors.zsh => extras/colors.zsh (100%) rename completion_style.zsh => extras/completion_style.zsh (100%) diff --git a/brethil_dotfile.sh b/brethil_dotfile.sh index 59b9278..a07f5a6 100755 --- a/brethil_dotfile.sh +++ b/brethil_dotfile.sh @@ -56,7 +56,8 @@ source "$DOTFILES/themes/brethil.zsh-theme" # Setup completion style -source $DOTFILES/completion_style.zsh +source $DOTFILES/extras/completion_style.zsh +source $DOTFILES/extras/colors.zsh source $DOTFILES/extras/fzf-tab-config.zsh if [[ $+commands[fd] ]]; then diff --git a/colors.zsh b/extras/colors.zsh similarity index 100% rename from colors.zsh rename to extras/colors.zsh diff --git a/completion_style.zsh b/extras/completion_style.zsh similarity index 100% rename from completion_style.zsh rename to extras/completion_style.zsh