.dotfiles/setup.sh

21 lines
492 B
Bash
Raw Normal View History

2018-11-13 16:41:58 +01:00
#!/usr/bin/sh
# remove all current dotfiles
rm -f ~/.zshrc
rm -f ~/.vimrc
rm -rf ~/.vim
2018-11-30 13:36:35 +01:00
rm -f ~/.tmux.conf
2018-11-13 16:41:58 +01:00
# create symbolic links to dotfiles
ln -s ~/.dotfiles/.vimrc ~/.vimrc
ln -s ~/.dotfiles/.zshrc ~/.zshrc
ln -s ~/.dotfiles/.vim ~/.vim
2018-11-30 13:36:35 +01:00
ln -s ~/.dotfiles/tmux.conf ~/.tmux.conf
2018-11-13 16:41:58 +01:00
# 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