This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let mapleader = " " | |
"Vundle | |
set nocompatible | |
filetype off | |
"filetype off | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
Plugin 'gmarik/Vundle.vim' | |
Plugin 'thoughtbot/vim-rspec' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[[ -s "$HOME/.profile" ]] && source "$HOME/.profile" # Load the default .profile | |
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function* | |
alias grep='ggrep --color=auto' | |
export PATH=$PATH:/Applications/Postgres.app/Contents/Versions/latest/bin | |
export INPUTRC="~/.inputrc" # Custom keybindings | |
export GITAWAREPROMPT=~/.bash/git-aware-prompt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Incremental searching with Up and Down. Type 'ssh <up>' to get the last 'ssh' command you used | |
"\e[A": history-search-backward | |
"\e[B": history-search-forward | |
# Shift arrows go foward and back words | |
";2D": backward-word | |
";2C": forward-word | |
set completion-ignore-case on |