dotfiles
dotfiles copied to clipboard
bash, git, rails, Sublime Text 3, homebrew, more...
mattbrictson’s dotfiles
This project contains the dotfiles and custom shell scripts that I use on my Mac.
Why keep them at GitHub? It’s a way to share advanced shell tips with other developers, and more practically, a way to back up my configuration. When I get a new Mac or (knock on wood) need to recover from lost data or a corrupt OS, I can simply clone this repository and immediately be back in business.
Thank you Ryan Bates, thoughtbot and Tom Ryder for the inspiration.
Requirements
Before using these dotfiles there are a few things you'll need to install manually:
- Your Mac needs git and Apple’s command-line developer tools.
- Homebrew.
My blog post here has a walkthrough: https://mattbrictson.com/rails-osx-setup-guide
Installation
Choose a place to store the dotfiles, like ~/Code/dotfiles.
git clone git://github.com/mattbrictson/dotfiles ~/Code/dotfiles
cd ~/Code/dotfiles
Run one of the three installation options:
rake install:dotfiles # Install the dotfiles and scripts
rake install:packages # Install homebrew packages and Mac defaults
rake install # Install all of the above (recommended)
Changing your bash version
Some features of the dotfiles only work with bash v5+. After installing bash via homebrew (which rake install:packages does for you), enable it as your shell as follows:
- Add
/usr/local/bin/bashto/etc/shells - Change your shell to
/usr/local/bin/bashby runningchsh
Package Control
The Sublime Text packages configured in these dotfiles are not installed automatically. You need to manually install Package Control:
- Press SHIFT CMD P to bring up the command palette
- Type
install - Select the option to install Package Control
Then install the packages you wish.
What’s included?
Sublime Text settings and packages
My Sublime Text settings are stored in the sublime directory of this repo. To ensure that Sublime Text can find this directory, I symlink ~/Library/Application Support/Sublime Text/Packages/User to it. The installation rake task takes care of setting this up for you. Here's what my dotfiles specify for Sublime:
- Settings optimized for Rails development
- Better auto-complete behavior
- Custom key bindings
Packages
- A File Icon
- AdvancedNewFile
- AutoFileName
- CloseOtherWindows
- Color Highlighter
- DashDoc
- DocBlockr
- Dracula Color Scheme
- GitGutter
- JsPrettier
- MarkdownPreview
- Package Control
- Pretty JSON
- Spec Finder
- SublimeLinter
- SublimeLinter-annotations
- SublimeLinter-contrib-erblint
- SublimeLinter-eslint
- SublimeLinter-json
- SublimeLinter-rubocop
- SublimeLinter-ruby
- SublimeLinter-shellcheck
- SublimeLinter-stylelint
- TOML
- YamlPipelines
Handy scripts
These scripts will be installed to ~/.bin and added to your $PATH:
brew-installinstalls and updates my standard suite of homebrew recipes. Run it on a new machine after installing homebrew to get all the recipes needed for Rails development, node, PostgreSQL, etc.bucketis a simple command-line interface for Bitbucket, most notably providing a way to create pull requests. Runbucket --helpfor details.defaults-installusesdefaults writeon OS X to change system default behavior to my liking: e.g. don't include drop-shadows on screenshots.git-pluckadds thepluckcommand to git, which is a trick for cherry-picking a commit from another repository into the current one:git pluck ../other-repo SHA.git-trimadds thetrimcommand to git, which deletes local and remote branches that have already been merged and thus are no longer needed.node-installis a convenient wrapper aroundnodenv installthat does some easy-to-forget housekeeping before and after installation. Usage:node-install 12.14.0.ruby-installis a convenient wrapper aroundrbenv installthat does some easy-to-forget housekeeping before and after installation. Usage:ruby-install 2.1.2.supuses SSH to update packages on one or more Ubuntu servers (assuming you have root access to them). In other words,sup SERVER1 SERVER2will SSH as root into both servers and run the appropriateaptitudecommands to safely update all packages. It will also report whether any daemons need to be restarted for the updates to take effect.
Shell enhancements (bash)
- Customizes the shell prompt with current directory and git status: e.g.
~/Work/dotfiles (main *%)$. - Replaces
diffwithcolordiff. - Prettifies
lsoutput and addsl,la, andllshortcuts. - Improves default
topsettings. - Allows bash command history to be navigated with up and down arrow keys.
- Makes bash auto-completion case-insensitive.
- Sets up necessary homebrew, rbenv, and python virtualenv shell variables.
- Specifies
lessas the default pager and Sublime Text (subl) as the default editor. - Sets better defaults for the
psqlcommand.
Git configuration
- Sets up a reasonable global gitignore file to ignore things like
.DS_Store,Icon?, and*sublime-project. - Enables color output and line-ending checks.
- Shortens common commands:
di,co,ci,br,l,sw. - Defines somes useful aliases:
git histgit ignored-filesgit untracked-filesgit unstage
In addition, during installation (see below), you will be prompted for your full name and email address, which are automatically added to the git config file.
Ruby/rails stuff
- Adds an
rcommand that serves as a shortcut for runningbin/rakeorbin/rails. It's pretty smart, sor swill expand tobin/rails server, andr dbwill expand tobin/rake db:console. No more mistakes of typingrailsvsrake! - Disables gem documentation generation so that
gem installruns much faster. - Configures the
xraygem to use Sublime Text. - Enables command history (use up and down arrows) in
irb. - Defines a list of useful gems that are installed by default whenever a new version of ruby is installed via
rbenv install.