Skip to content

andriesss/dotfiles

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dotfiles based on thoughtbot

For easy rc management install rcm

For beautiful colours in diffs and logs install grc

apt-get install grc

Or, on a real OS:

brew install grc

For faster searching, completions and general sanity, install silversearcher-ag (It is like grep or ack, but faster.)

apt-get install silversearcher-ag

Or, on a real OS:

brew install silversearcher-ag

For fuzy find, install fzf

git clone --depth 1 https://github.com/junegunn/fzf.git ~/.fzf
~/.fzf/install

Or, on a real OS:

brew install fzf
/usr/local/opt/fzf/install

For personal settings create a dotfiles-local folder in your home folder and create the files there. For example:

File: ~/dotfiles-local/gitconfig.local

Contents:

[user]
  email = simon@nonofyarbusiness.aaarg
  name = Simon the Pirate

These .local files are symlinked into the home folder (~/.gitconfig.local) and sourced or included by the files in this repo.