changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > infra > home / .bash_profile

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