changelog shortlog graph tags branches changeset files file revisions raw help

Mercurial > infra > home / annotate .bash_profile

changeset 44: 3b1dfa0741c8
parent: 2cd49f7c09bb
author: Richard Westhaver <ellis@rwest.io>
date: Sat, 15 Jun 2024 19:59:31 -0400
permissions: -rw-r--r--
description: merge
2
2cd49f7c09bb import ellis home
Richard Westhaver <ellis@rwest.io>
parents:
diff changeset
1
 # .bash_profile --- bash profile
2cd49f7c09bb import ellis home
Richard Westhaver <ellis@rwest.io>
parents:
diff changeset
2
 
2cd49f7c09bb import ellis home
Richard Westhaver <ellis@rwest.io>
parents:
diff changeset
3
 export PYTHON=python3.11
2cd49f7c09bb import ellis home
Richard Westhaver <ellis@rwest.io>
parents:
diff changeset
4
 export PYENV_ROOT="$HOME/.pyenv"
2cd49f7c09bb import ellis home
Richard Westhaver <ellis@rwest.io>
parents:
diff changeset
5
 export PATH="$PYENV_ROOT/bin:$PATH"
2cd49f7c09bb import ellis home
Richard Westhaver <ellis@rwest.io>
parents:
diff changeset
6
 export PATH="$HOME/go/bin:$HOME/.nimble/bin:$HOME/.cargo/bin:$HOME/.local/bin:$HOME/bin:$PATH"
2cd49f7c09bb import ellis home
Richard Westhaver <ellis@rwest.io>
parents:
diff changeset
7
 
2cd49f7c09bb import ellis home
Richard Westhaver <ellis@rwest.io>
parents:
diff changeset
8
 if ! shopt -oq posix; then
2cd49f7c09bb import ellis home
Richard Westhaver <ellis@rwest.io>
parents:
diff changeset
9
     if [ -f /usr/share/bash-completion/bash_completion ]; then
2cd49f7c09bb import ellis home
Richard Westhaver <ellis@rwest.io>
parents:
diff changeset
10
         . /usr/share/bash-completion/bash_completion
2cd49f7c09bb import ellis home
Richard Westhaver <ellis@rwest.io>
parents:
diff changeset
11
     elif [ -f /etc/bash_completion ]; then
2cd49f7c09bb import ellis home
Richard Westhaver <ellis@rwest.io>
parents:
diff changeset
12
         . /etc/bash_completion
2cd49f7c09bb import ellis home
Richard Westhaver <ellis@rwest.io>
parents:
diff changeset
13
     fi
2cd49f7c09bb import ellis home
Richard Westhaver <ellis@rwest.io>
parents:
diff changeset
14
 fi
2cd49f7c09bb import ellis home
Richard Westhaver <ellis@rwest.io>
parents:
diff changeset
15
 
2cd49f7c09bb import ellis home
Richard Westhaver <ellis@rwest.io>
parents:
diff changeset
16
 eval "$(pyenv init --path)"
2cd49f7c09bb import ellis home
Richard Westhaver <ellis@rwest.io>
parents:
diff changeset
17
 if command -v rhg>>/dev/null; then alias hg='rhg';fi