Skip to content

Instantly share code, notes, and snippets.

@esbullington
Created August 7, 2020 17:13
Show Gist options
  • Save esbullington/085aaf0ccf1ea96b3497f3df5f3daa71 to your computer and use it in GitHub Desktop.
Save esbullington/085aaf0ccf1ea96b3497f3df5f3daa71 to your computer and use it in GitHub Desktop.
Minimal .bashrc
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