Created
August 7, 2020 17:13
-
-
Save esbullington/085aaf0ccf1ea96b3497f3df5f3daa71 to your computer and use it in GitHub Desktop.
Minimal .bashrc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set -o vi | |
alias eb='vi ~/.bashrc' | |
alias sb='source ~/.bashrc' | |
alias et='vi ~/.tmux.conf' | |
alias st='source ~/.tmux.conf' | |
shopt -s direxpand | |
export HISTCONTROL=ignorespace:ignoredups | |
set bell-style none | |
if ! shopt -oq posix; then | |
if [ -f /usr/share/bash-completion/bash_completion ]; then | |
. /usr/share/bash-completion/bash_completion | |
elif [ -f /etc/bash_completion ]; then | |
. /etc/bash_completion | |
fi | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment