diff options
author | Urbain Vaes <urbain@vaes.uk> | 2014-10-14 14:41:33 +0100 |
---|---|---|
committer | Urbain Vaes <urbain@vaes.uk> | 2014-10-14 14:41:33 +0100 |
commit | 8ae2c0c1e313377a4479569e8f1bf4a269e23937 (patch) | |
tree | 1ca3b0d128b7cbb3d1c643750ae76d8a8ebe75e1 /install.sh | |
parent | 5e3814f6664edcf0bb633d38ef7836dbf768b696 (diff) |
Adding new dotfiles for mutt conf + notes
Diffstat (limited to 'install.sh')
-rwxr-xr-x | install.sh | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/install.sh b/install.sh deleted file mode 100755 index 95567e3..0000000 --- a/install.sh +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/bash - -dir=~/dotfiles -olddir=~/dotfiles_old -files="bashrc vimrc zshrc muttrc vim xmodmap" - -mkdir -p $olddir -cd $dir -for file in $files; do - echo $file - mv ~/.$file ~/dotfiles_old/ - ln -s $dir/.$file ~ -done - -rm -rf .vim/bundle -mkdir .vim/bundle -git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle -vim +PluginInstall +qall - |