Created
May 4, 2012 18:36
-
-
Save sholloway/2596813 to your computer and use it in GitHub Desktop.
My .vimrc file
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
"Set up searching | |
set incsearch | |
set ignorecase | |
set smartcase | |
"Always have some padding on scrolling | |
set scrolloff=2 | |
"turn on sytnax highlighing by default | |
syntax on | |
"Set up code indention | |
set smartindent | |
set tabstop=2 "ruby style | |
set expandtab "turn tabs into whitespace | |
set shiftwidth=2 "indent width for autoindent | |
""enable indent folding | |
set foldenable | |
set fdm=indent | |
"set color scheme | |
"available schemes at /usr/share/vim/vim64/colors | |
set t_Co=256 | |
colorscheme darkblue | |
"Set Space to toggle a fold | |
nnoremap <space> za | |
"Turn on line numbers | |
set number | |
"Call Pathogen | |
call pathogen#infect() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment