Fraser's dotfiles for unix user accounts
Based on this: https://www.ackama.com/what-we-think/the-best-way-to-store-your-dotfiles-a-bare-git-repository-explained/
To deploy it on a new account:
Installing:
- cd
- echo ".cfg" >> .gitignore
- git clone --bare git@github.com:gongfarmer/dotfiles-public.git $HOME/.cfg
- alias config='/usr/bin/git --git-dir=$HOME/.cfg/ --work-tree=$HOME'
- config config --local status.showUntrackedFiles no
- config checkout
- vi .bashrc # Add this:
### Fraser custom configuration
if [ -f ~/.bash_fraser ]; then
source ~/.bash_fraser
fi