mirror of
https://github.com/tomru/DotfilesOld.git
synced 2026-03-03 06:27:21 +01:00
13 lines
298 B
Bash
13 lines
298 B
Bash
# ensure dotfiles bin directory is loaded first
|
|
PATH="$HOME/.bin:/usr/local/sbin:$PATH"
|
|
|
|
# load rbenv if available
|
|
if command -v rbenv >/dev/null; then
|
|
eval "$(rbenv init - --no-rehash)"
|
|
fi
|
|
|
|
# mkdir .git/safe in the root of repositories you trust
|
|
PATH=".git/safe/../../bin:$PATH"
|
|
|
|
export -U PATH
|