Created
October 17, 2012 23:47
-
-
Save bit-dragon/3909047 to your computer and use it in GitHub Desktop.
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
call pathogen#infect() | |
" Tabs | |
set shiftwidth=2 | |
set tabstop=2 | |
set vb | |
" Highlight | |
set hlsearch! | |
" GUI options | |
set guioptions-=m "remove menu bar" | |
set guioptions-=T "remove toolbar" | |
syntax on | |
filetype plugin indent on | |
" swap files | |
set noswapfile | |
set nowritebackup | |
"Color scheme | |
colorscheme github | |
"Number | |
set number | |
set ruler |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment