Fixes, ready2use

This commit is contained in:
Gerrit Pannek 2017-11-03 08:24:23 +01:00
parent 262cd6abb2
commit d9cc9b18b4
2 changed files with 9 additions and 8 deletions

1
bashrc
View File

@ -11,7 +11,6 @@ tmux_title $(hostname -s)
GIT_PROMPT_ONLY_IN_REPO=1
GIT_PROMPT_FETCH_REMOTE_STATUS=0
GIT_PROMPT_IGNORE_STASH=1
GIT_PROMPT_THEME=Single_line
GIT_PROMPT_THEME=Noldorized
source ~/.bash-git-prompt/gitprompt.sh

View File

@ -1,16 +1,18 @@
#!/bin/bash
LINK_FILES=(bashrc vimrc tmux.conf gitconfig)
mkdir ~/.home-git-back
mkdir ~/.home-git-back 2>/dev/null
for file in ${LINK_FILES[@]}; do
[ -f ~/.${file} ] && mv -v ~/.${file} ~/.home-git-back
ln -s $(PWD)/${file} ~/.${file}
if [ ! -L ~/.${file} ] ; then
mv -v ~/.${file} ~/.home-git-back
ln -s $(pwd)/${file} ~/.${file}
fi
done
# git clones
git clone https://github.com/magicmonty/bash-git-prompt.git ~/.bash-git-prompt
mkdir ~./vim
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle
[ ! -d ~/.bash-git-prompt ] && git clone https://github.com/nold360/bash-git-prompt.git ~/.bash-git-prompt
mkdir ~/.vim 2>/dev/null
[ ! -d ~/.vim/bundle ] && git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle
vim -c ":PluginInstall" -c ":q" -c ":q"