Skip to content

Instantly share code, notes, and snippets.

@brycemcd
Created December 21, 2011 20:40
Show Gist options
  • Save brycemcd/1507602 to your computer and use it in GitHub Desktop.
Save brycemcd/1507602 to your computer and use it in GitHub Desktop.
my janice vimrc
" BAREBONES STUFF
" sanity things
set number
syntax on
"indent settings
set shiftwidth=2
set softtabstop=2
set expandtab
set autoindent
"folding settings
set foldmethod=indent "fold based on indent
set foldnestmax=3 "deepest fold is 3 levels
set nofoldenable "dont fold by default
" NOT SO BARE BONES STUFF" make the colors like I like em
set background=dark
colorscheme solarized
set colorcolumn=80
set wrap
set showbreak="..."
" convienience stuff:
map <leader>tf :!rspec % <cr>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment