--- /dev/null
+#!/usr/bin/env bash
+
+git init --bare $HOME/.dotfiles
+
+# Define githome function
+function dotfiles()
+{
+ git --git-dir=$HOME/.dotfiles --work-tree=$HOME "$@"
+}
+
+# Initial setup
+githome config --local status.showUntrackedFiles no
+githome remote add origin git@jaza.me:jaz/dotfiles.git
+githome fetch
+githome reset --hard origin/master
+githome branch -u origin/master
+
+++ /dev/null
-#!/usr/bin/env bash
-
-git init --bare $HOME/.githome
-
-# Define githome function
-function githome()
-{
- git --git-dir=$HOME/.githome --work-tree=$HOME "$@"
-}
-
-# Initial setup
-githome config --local status.showUntrackedFiles no
-githome remote add origin git@jaza.me:jaz/dotfiles.git
-githome fetch
-githome reset --hard origin/master
-githome branch -u origin/master
-