linux-config/.bashrc

27 lines
538 B
Bash

# .bashrc
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
alias ls='ls --color=auto'
alias cls=clear
alias linux-config="/usr/bin/git --git-dir=${HOME}/.local/dotfiles.git --work-tree=${HOME}"
PS1='[\u@\h \W]\$ '
# Python
export PATH="$PATH:/home/tumble/.local/bin:/home/tumble/.pyenv/bin:/home/tumble/.cargo/bin"
# Ruby
eval "$(rbenv init - bash)"
# pnpm
export PNPM_HOME="/home/tumble/.local/share/pnpm"
case ":$PATH:" in
*":$PNPM_HOME:"*) ;;
*) export PATH="$PNPM_HOME:$PATH" ;;
esac
# pnpm end