From e0ce4de92eda33a798f4bcf72c29a69b9947d76e Mon Sep 17 00:00:00 2001 From: Daniel Sissom Date: Fri, 5 Jul 2019 21:22:55 -0500 Subject: [PATCH] Put sourcing alias defs back where it was to fix what the last commit messed up and added option to actually fix git tab completion. --- zsh/zshrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zsh/zshrc b/zsh/zshrc index 0dbdf7f..97ab262 100644 --- a/zsh/zshrc +++ b/zsh/zshrc @@ -1,4 +1,3 @@ -[ -r ~/.aliases ] && . ~/.aliases # this is going to have to go above completion stuff # The following lines were added by compinstall zstyle ':completion:*' auto-description 'Specify parameter: %d' @@ -321,7 +320,8 @@ setopt HIST_IGNORE_SPACE # Source alias definitions file #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -# aliases file sourcing used to be here and will come back soon +[ -r ~/.aliases ] && . ~/.aliases # this is going to have to go above completion stuff +setopt complete_aliases #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~