19 lines
762 B
Bash
Executable file
19 lines
762 B
Bash
Executable file
#! /bin/bash
|
|
# fail immediately on error
|
|
set -e
|
|
|
|
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
|
|
|
|
pip install --user -r https://github.com/schtobia/bootstrap/raw/master/requirements.txt
|
|
|
|
# vim related
|
|
npm install -g instant-markdown-d && \
|
|
nvim +PluginInstall +qall
|