Skip to content

Instantly share code, notes, and snippets.

@jihchi
Last active September 5, 2015 03:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jihchi/4826bc540b29b662b6ad to your computer and use it in GitHub Desktop.
Save jihchi/4826bc540b29b662b6ad to your computer and use it in GitHub Desktop.
My Bash It Default Installation
#!/bin/bash
# bash-it
BASH_IT=~/.bash_it
if [ ! -d "$BASH_IT" ]; then
git clone --depth=1 https://github.com/Bash-it/bash-it.git $BASH_IT
$BASH_IT/install.sh
fi
source ~/.bashrc
# git
bash-it enable plugin git
bash-it enable completion git
bash-it enable alias git
# docker
bash-it enable plugin docker
bash-it enable alias docker
# misc
bash-it enable alias general
bash-it enable alias fuck
echo "Execute `source ~/.bashrc` to apply configuration"
@jihchi
Copy link
Author

jihchi commented Sep 5, 2015

bash <(wget -qO- https://gist.github.com/jihchi/4826bc540b29b662b6ad/raw)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment