.bashrc with useful aliases.
cp .bashrc ~/.bashrc
# or
cd ~
wget https://raw.githubusercontent.com/mrminning/bash/master/.bashrc
Put this in .bashrc to only use aliases, just below the .bash_aliases
if [ -f ~/bash/bash_aliases.sh ]; then
. ~/bash/bash_aliases.sh
fi
cd ~
wget https://raw.githubusercontent.com/mrminning/bash/master/.tmux.conf
Put this in .bashrc to use tmuxfunctions.
if [ -f ~/bash/tmuxfunctions.sh ]; then
. ~/bash/tmuxfunctions.sh
fi