config/bash/.bashrc

17 lines
597 B
Bash

# Path
export PATH="$HOME/bin"
export PATH="$PATH:/usr/local/bin"
export PATH="$PATH:/usr/bin"
export PATH="$PATH:/bin"
export PATH="$PATH:/usr/local/sbin"
export PATH="$PATH:/usr/sbin"
export PATH="$PATH:/sbin"
# Do not save lines which begin with a space character
# Do not save lines which match the previous history entry
# Remove from history all previous lines matching the current line
export HISTCONTROL=ignoreboth:erasedups
[ -f /usr/local/etc/bash_completion ] && source /usr/local/etc/bash_completion
[ -f $HOME/.sdkman/bin/sdkman-init.sh ] && source $HOME/.sdkman/bin/sdkman-init.sh