2016-05-22 07:53:37 +00:00
|
|
|
# Move to home dir
|
|
|
|
|
cd ~/
|
|
|
|
|
|
|
|
|
|
# Link dotfiles to the repo files
|
|
|
|
|
ln -sf ~/.dotfiles/dotfiles/bashrc ~/.bashrc
|
|
|
|
|
ln -sf ~/.dotfiles/dotfiles/tmux.conf ~/.tmux.conf
|
|
|
|
|
ln -sf ~/.dotfiles/dotfiles/vimrc ~/.vimrc
|
|
|
|
|
ln -sf ~/.dotfiles/dotfiles/Xresources ~/.Xresources
|
2016-11-20 07:40:34 +00:00
|
|
|
ln -sf ~/.dotfiles/dotfiles/zshrc ~/.zshrc
|
2016-05-22 07:53:37 +00:00
|
|
|
|
|
|
|
|
# Link to the tmuxinator dir
|
2016-05-23 04:57:38 +00:00
|
|
|
rm -rf ~/.tmuxinator
|
2016-05-22 07:53:37 +00:00
|
|
|
ln -sf ~/.dotfiles/dotfiles/tmuxinator ~/.tmuxinator
|
|
|
|
|
|
2016-08-15 19:00:11 +00:00
|
|
|
# Link bin files
|
2016-08-15 19:41:25 +00:00
|
|
|
sudo ln -sf ~/.dotfiles/dotfiles/bin/* /usr/local/bin
|
2016-08-15 19:00:11 +00:00
|
|
|
|
2016-05-22 09:34:00 +00:00
|
|
|
# Link to vim plugin autoloader
|
|
|
|
|
mkdir -p ~/.vim/autoload
|
2016-05-22 07:53:37 +00:00
|
|
|
ln -sf ~/.dotfiles/dotfiles/vim/autoload/pathogen.vim ~/.vim/autoload/pathogen.vim
|
|
|
|
|
|
2016-11-20 07:40:34 +00:00
|
|
|
# selenium server
|
|
|
|
|
rm -rf ~/.selenium-server
|
|
|
|
|
ln -sf ~/.dotfiles/dotfiles/selenium-server ~/.selenium-server
|
|
|
|
|
|
2016-05-22 09:34:00 +00:00
|
|
|
# Install vim plugins
|
|
|
|
|
rm -rf ~/.vim/bundle
|
|
|
|
|
mkdir -p ~/.vim/bundle
|
|
|
|
|
cd ~/.dotfiles
|
|
|
|
|
git submodule init
|
|
|
|
|
git submodule update
|
|
|
|
|
ln -sf ~/.dotfiles/dotfiles/vim/bundle/* ~/.vim/bundle
|
|
|
|
|
cd ~/
|
|
|
|
|
echo "All dotfiles have been installed"
|