dot: change bash configuration

This commit is contained in:
2026-03-16 18:23:38 +08:00
parent b8f0c66d87
commit 9ce32f5670
10 changed files with 358 additions and 27 deletions

View File

@@ -0,0 +1,10 @@
if [[ -x $(type -p pip_search) ]]; then
function _pip() {
if [[ "$1" == "search" ]]; then
pip_search "$2"
else
pip "$@"
fi
}
alias pip=_pip
fi