add setup.sh
This commit is contained in:
parent
8daefb07d0
commit
e8f966e608
1 changed files with 18 additions and 0 deletions
18
setup.sh
Normal file
18
setup.sh
Normal file
|
@ -0,0 +1,18 @@
|
|||
#!/usr/bin/sh
|
||||
|
||||
# remove all current dotfiles
|
||||
rm -f ~/.zshrc
|
||||
rm -f ~/.vimrc
|
||||
rm -rf ~/.vim
|
||||
|
||||
# create symbolic links to dotfiles
|
||||
ln -s ~/.dotfiles/.vimrc ~/.vimrc
|
||||
ln -s ~/.dotfiles/.zshrc ~/.zshrc
|
||||
ln -s ~/.dotfiles/.vim ~/.vim
|
||||
|
||||
# install vundle
|
||||
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
|
||||
|
||||
# next steps:
|
||||
# - chage oh-my-zsh home directory
|
||||
# - install Vundle plugins from inside vim :PluginInstall
|
Loading…
Add table
Reference in a new issue