Browse Source

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.
master
Daniel Sissom 5 years ago
parent
commit
e0ce4de92e
Signed by untrusted user who does not match committer: djsissom GPG Key ID: 2C30FFB796852389
1 changed files with 2 additions and 2 deletions
  1. + 2
    - 2
      zsh/zshrc

+ 2
- 2
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
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Loading…
Cancel
Save