changelog shortlog graph tags branches changeset file revisions annotate raw help

Mercurial > infra > home / .bash_profile

revision 2: 2cd49f7c09bb
     1.1--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2+++ b/.bash_profile	Wed May 01 18:04:18 2024 -0400
     1.3@@ -0,0 +1,17 @@
     1.4+# .bash_profile --- bash profile
     1.5+
     1.6+export PYTHON=python3.11
     1.7+export PYENV_ROOT="$HOME/.pyenv"
     1.8+export PATH="$PYENV_ROOT/bin:$PATH"
     1.9+export PATH="$HOME/go/bin:$HOME/.nimble/bin:$HOME/.cargo/bin:$HOME/.local/bin:$HOME/bin:$PATH"
    1.10+
    1.11+if ! shopt -oq posix; then
    1.12+    if [ -f /usr/share/bash-completion/bash_completion ]; then
    1.13+        . /usr/share/bash-completion/bash_completion
    1.14+    elif [ -f /etc/bash_completion ]; then
    1.15+        . /etc/bash_completion
    1.16+    fi
    1.17+fi
    1.18+
    1.19+eval "$(pyenv init --path)"
    1.20+if command -v rhg>>/dev/null; then alias hg='rhg';fi