added bootstrap-user.sh

This commit is contained in:
Tobias Schmidl 2018-11-23 09:57:23 +01:00
parent 587b8daabc
commit 6d9ac04fa7
2 changed files with 18 additions and 19 deletions

16
bootstrap-user.sh Executable file
View file

@ -0,0 +1,16 @@
#! /bin/bash
TMPDIR=$(mktemp -u -p "$HOME" -d dotfiles.XXXXX) && \
git clone --separate-git-dir="$HOME/.cfg" https://github.com/schtobia/dotfiles.git "$TMPDIR" && \
[ -r "$TMPDIR/.gitmodules" ] && cp -vi "$TMPDIR/.gitmodules" "$HOME"
[ -d "$HOME/.cfg" ] && \
git --git-dir="$HOME/.cfg/" --work-tree="$HOME" config status.showUntrackedFiles no && \
(cd $HOME && \
git --git-dir="$HOME/.cfg/" --work-tree="$HOME" checkout -- . && \
git --git-dir="$HOME/.cfg/" --work-tree="$HOME" submodule update --init --remote --recursive --rebase)
rm -rf $TMPDIR
# vim related
pip install --user neovim && \
npm install -g instant-markdown-d && \
nvim +PluginInstall +qall && \
(cd $HOME/.vim/bundle/YouCompleteMe && ./install.py --clang-completer --js-completer --system-libclang)