Created
December 21, 2011 20:40
-
-
Save brycemcd/1507602 to your computer and use it in GitHub Desktop.
my janice vimrc
This file contains 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
" 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