dotfiles/.zsh.d/git.zsh

14 lines
222 B
Bash
Raw Normal View History

2024-02-10 12:33:24 +00:00
: git-completion && {
autoload bashcompinit
bashcompinit
case ${OSTYPE} in
linux*)
# for Linux
if [ -f ~/.git-completion.bash ]; then
source ~/.git-completion.bash
fi
;;
esac
}