Skip to content

Instantly share code, notes, and snippets.

@mmasashi
Created November 12, 2012 17:26
Show Gist options
  • Save mmasashi/4060669 to your computer and use it in GitHub Desktop.
Save mmasashi/4060669 to your computer and use it in GitHub Desktop.
Dotfiles for a development environment

Purpose

Prepare for developing with zsh, git and vim.

Basic

  • install zsh and set it as default shell
    • create .zshrc
    • setup git alias
alias g=git
git config --global color.ui auto
git config --global alias.co checkout
git config --global alias.ci commit
git config --global alias.st status
git config --global alias.br branch
git config --global alias.hist 'log --pretty=format:\"%h %ad | %s%d [%an]\" --graph --date=short'
Bundle 'vim-ruby/vim-ruby'
Bundle 'tpope/vim-rails'
Bundle 'tpope/vim-cucumber'

Advanced

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment