Last active
September 5, 2015 03:56
-
-
Save jihchi/4826bc540b29b662b6ad to your computer and use it in GitHub Desktop.
My Bash It Default Installation
This file contains hidden or 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
#!/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" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
bash <(wget -qO- https://gist.github.com/jihchi/4826bc540b29b662b6ad/raw)