if [ -e /usr/bin/vimx ]; then alias vim='/usr/bin/vimx'; fi
# Shortcuts
-alias gdf='git --git-dir=$HOME/.gitdotfiles --work-tree=$HOME'
+alias gdf='git --git-dir=$HOME/.dotfiles --work-tree=$HOME'
alias g='git'
alias h='history'
alias j='jobs'
What you need to do on the new box is this:
$ cd $HOME
- $ git init --bare $HOME/.gitdotfiles
- $ alias gdf='git --git-dir=$HOME/.gitdotfiles --work-tree=$HOME'
+ $ git init --bare $HOME/.dotfiles
+ $ alias gdf='git --git-dir=$HOME/.dotfiles --work-tree=$HOME'
$ gdf config --local status.showUntrackedFiles no
$ gdf remote add origin git@bitbucket.org:jannikz/dotfiles.git
$ gdf fetch