Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 884 Bytes

README.md

File metadata and controls

27 lines (19 loc) · 884 Bytes

My dotfiles that I want to have consistent across all environments, in particular ~/.zshrc, ~/.vimrc, and ~/.tmux.conf files. It will also pull in oh-my-zsh for zsh customization.

The are managed by homeshick. You will probably need to bootstrap this on every server. I use the following shell script:

#!/bin/bash -ex

### Install homeshick ###
git clone git://github.com/andsens/homeshick.git $HOME/.homesick/repos/homeshick
source $HOME/.homesick/repos/homeshick/homeshick.sh

homeshick --batch clone https://github.com/chalverson/dotfiles.git

### Clone public repos ###
homeshick clone --batch robbyrussell/oh-my-zsh

### Link it all to $HOME ###
homeshick link --force

ln -s $HOME/.homesick/repos/oh-my-zsh $HOME/.oh-my-zsh

echo "Log in again to start your proper shell"