Skip to content

Instantly share code, notes, and snippets.

@jeasinema
Last active March 23, 2017 12:50
Show Gist options
  • Save jeasinema/666466b6216761cb73f9c0de289104d9 to your computer and use it in GitHub Desktop.
Save jeasinema/666466b6216761cb73f9c0de289104d9 to your computer and use it in GitHub Desktop.
# !/bin/bash
# $date: 09-16-16
# $purpose: basic configuration
# $author: jeasinema [jeasinema[at]gmail[dot]com]
UNAME="jeasinema"
DOT_FILE="https://github.com/jeasinema/.dotfile.git"
DOT_NAME=".dotfile"
VIM_REPO_NAME="vim-config"
test_command() {
command -v "$1" 2&>1 >/dev/null ;
}
echo "=========== chsh to fish ==========="
sudo chsh /usr/bin/fish
# clone .dotfile
echo "========== clone dot file =========="
if test_command git ; then
git clone $DOT_FILE --recursive
else
sudo apt-get install git
git clone $DOT_FILE --recursive
fi
git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
echo "========== link dot file =========="
ln /home/$UNAME/$DOT_NAME/.gdbinit /home/$UNAME/.
ln /home/$UNAME/$DOT_NAME/.gitconfig /home/$UNAME/.
ln /home/$UNAME/$DOT_NAME/.tmux.conf /home/$UNAME/.
ln /home/$UNAME/$DOT_NAME/.ycm_extra_conf.py /home/$UNAME/.
mv /home/$UNAME/.vim /home/$UNAME/.vim.bak
ln -s /home/$UNAME/$DOT_NAME/$VIM_REPO_NAME /home/$UNAME/.vim
mkdir /home/$UNAME/bundle
ln /home/$UNAME/.vim/.vimrc /home/$UNAME/.
echo "========== install vim plugin ==========="
vim +PlugUpgrade +PlugUpdate +PlugInstall +qall
echo "========== compile ycm ==========="
cd /home/$UNAME/bundle/YouCompleteMe
./install.py --clang-completer
echo "======== All done =========="
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment