parchlinux global dotfiles
Find a file
Greg Lazarev 1ccc110a61 Improve zsh history
* "to the $HISTFILE incrementally (as soon as they are entered), rather than
  waiting until the shell exits"
* replace any duplicate in the history, not just the previous duplicate: allows
  for a cleaner history
* `.zhistory` is more idiomatic than `.zsh_history`
2014-04-09 10:07:23 -07:00
bin Isolate credits to README 2013-06-18 16:47:01 -07:00
hooks Always update from vundle 2013-12-05 10:27:16 +01:00
vim Fix issue with submodules 2013-04-24 09:57:14 -04:00
zsh Complete parity commands like heroku 2014-01-23 18:35:34 -05:00
.gitignore Ignore new things in vim/bundle/ 2013-04-24 09:57:14 -04:00
agignore Use ag instead of ack 2013-03-01 23:28:36 -05:00
aliases Remove gi and giv aliases 2014-04-04 22:35:50 -07:00
Brewfile changes 'brew tap thoughtbot/rcm' to 'brew tap thoughtbot/formulae' 2014-02-02 14:56:26 -07:00
gemrc Disable Rubygem documentation to make Bundler fast 2013-11-23 15:41:23 -08:00
gitconfig Add a commit message template 2013-10-08 09:59:44 +02:00
gitignore Globally ignore .env file 2013-09-20 11:12:21 -04:00
gitmessage Add a commit message template 2013-10-08 09:59:44 +02:00
gvimrc Vim configuration 2011-01-13 17:54:08 -05:00
hushlogin Turn off banner at login 2013-06-24 09:27:41 -07:00
LICENSE Update copyright to 2014 2014-01-27 01:13:49 -08:00
psqlrc Add psqlrc 2014-01-24 23:15:38 -05:00
rcrc Also look for dotfiles-local 2014-04-02 11:25:38 -04:00
README.md Exclude Brewfile 2014-03-14 14:01:42 -07:00
rspec Add rspec config file 2013-08-09 17:35:05 -04:00
tmux.conf Add extra option for base pane index for tmuxinator 2014-03-07 16:11:47 -08:00
vimrc Use default 'complete' Vim setting 2014-04-03 11:52:04 -04:00
vimrc.bundles Only set nocompatible once as early as possible 2014-03-19 15:05:30 -04:00
zshrc Improve zsh history 2014-04-09 10:07:23 -07:00

thoughtbot dotfiles

Requirements

Set zsh as your login shell:

chsh -s $(which zsh)

Install

Clone onto your laptop:

git clone git://github.com/thoughtbot/dotfiles.git

(Or, fork and keep your fork updated).

Install rcm:

brew bundle dotfiles/Brewfile

Install:

rcup -d dotfiles -x README.md -x LICENSE -x Brewfile

This will create symlinks for config files in your home directory. The -x options, which exclude the README.md, LICENSE, and Brewfile files, are needed during installation but can be skipped once the .rcrc configuration file is symlinked in.

You can safely run rcup multiple times to update:

rcup

Make your own customizations

Put your customizations in dotfiles appended with .local:

  • ~/.aliases.local
  • ~/.gitconfig.local
  • ~/.gvimrc.local
  • ~/.tmux.conf.local
  • ~/.vimrc.local
  • ~/.vimrc.bundles.local
  • ~/.zshrc.local

For example, your ~/.aliases.local might look like this:

# Productivity
alias todo='$EDITOR ~/.todo'

Your ~/.gitconfig.local might look like this:

[alias]
  l = log --pretty=colored
[pretty]
  colored = format:%Cred%h%Creset %s %Cgreen(%cr) %C(bold blue)%an%Creset
[user]
  name = Dan Croak
  email = dan@thoughtbot.com

Your ~/.zshrc.local might look like this:

# recommended by brew doctor
export PATH="/usr/local/bin:/usr/local/sbin:$PATH"

Your ~/.vimrc.bundles.local might look like this:

Bundle 'Lokaltog/vim-powerline'
Bundle 'stephenmckinney/vim-solarized-powerline'

What's in it?

vim configuration:

  • Ctrl-P for fuzzy file/buffer/tag finding.
  • Rails.vim for enhanced navigation of Rails file structure via gf and :A (alternate), :Rextract partials, :Rinvert migrations, etc.
  • Run RSpec specs from vim.
  • Set <leader> to a single space.
  • Switch between the last two files with space-space.
  • Syntax highlighting for CoffeeScript, Textile, Cucumber, Haml, Markdown, and HTML.
  • Use Ag instead of Grep when available.
  • Use Exuberant Ctags for tab completion.
  • Use GitHub color scheme.
  • Use Vundle to manage plugins.

tmux configuration:

  • Improve color resolution.
  • Remove administrative debris (session name, hostname, time) in status bar.
  • Set prefix to Ctrl+a (like GNU screen).
  • Soften status bar color from harsh green to light gray.

git configuration:

  • Adds a create-branch alias to create feature branches.
  • Adds a delete-branch alias to delete feature branches.
  • Adds a merge-branch alias to merge feature branches into master.
  • Adds an up alias to fetch and rebase origin/master into the feature branch. Use git up -i for interactive rebases.

Ruby configuration:

  • Add trusted binstubs to the PATH.
  • Load rbenv into the shell, adding shims onto our PATH.

Shell aliases and scripts:

  • b for bundle.
  • g with no arguments is git status and with arguments acts like git.
  • git-churn to show churn for the files changed in the branch.
  • m for rake db:migrate && rake db:rollback && rake db:migrate && rake db:test:prepare.
  • mcd to make a directory and change into it.
  • rake is zeus rake if using Zeus on the project in current directory.
  • replace foo bar **/*.rb to find and replace within a given list of files.
  • rk for rake.
  • rspec is zeus rspec if using Zeus on the project in current directory.
  • tat to attach to tmux session named the same as the current directory.
  • v for $VISUAL.

Credits

Thank you, contributors! Also, thank you to Corey Haines, Gary Bernhardt, and others for sharing your dotfiles and other shell scripts from which we derived inspiration for items in this project.

thoughtbot

Dotfiles is maintained by thoughtbot, inc The names and logos for thoughtbot are trademarks of thoughtbot, inc.

Dotfiles is © 2009-2014 thoughtbot, inc. It is free software and may be redistributed under the terms specified in the LICENSE file.