diff --git a/bash/bash_profile b/bash/bash_profile index bb57ada..4ec04ee 100644 --- a/bash/bash_profile +++ b/bash/bash_profile @@ -65,10 +65,6 @@ function parse_git_branch { return } -if [ -f `brew --prefix`/etc/bash_completion ]; then - . `brew --prefix`/etc/bash_completion -fi - export TERM="xterm-color" alias ls="ls -G" export PS1="$PURPLE\u@\h$WHITE:$BLUE\w$YELLOW\$(parse_git_branch)$WHITE\$ " diff --git a/install.sh b/install.sh index e0a9eaf..924cbf0 100755 --- a/install.sh +++ b/install.sh @@ -31,7 +31,7 @@ fi mkdir -p "${HOME}/bin" "${HOME}/.bash_aliases.d" "${HOME}/.bash_completion.d" "${HOME}/.bash_functions.d" cd "${ROOT}/bash/bash_magic/bash_aliases.d"; -for i in color refresh git less brew dev sublime top; do cp "${i}.sh" "${HOME}/.bash_aliases.d"; done +for i in color refresh git less dev sublime top; do cp "${i}.sh" "${HOME}/.bash_aliases.d"; done cd "${ROOT}/bash/bash_magic/bash_completion.d"; for i in etc; do cp "${i}.sh" "${HOME}/.bash_completion.d"; done cd "${ROOT}/bash/bash_magic/bash_functions.d";