Created
May 15, 2012 18:23
-
-
Save maxwellE/2703948 to your computer and use it in GitHub Desktop.
my 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() | |
filetype plugin indent on | |
set background=dark | |
colorscheme Tomorrow-Night | |
set number | |
set guifont=Monaco:h12 | |
set tabstop=2 shiftwidth=2 expandtab | |
" Intuitive backspacing in insert mode | |
set backspace=indent,eol,start | |
" File-type highlighting and configuration. | |
" Run :filetype (without args) to see what you may have | |
" to turn on yourself, or just set them all to be sure. | |
syntax on | |
filetype on | |
filetype plugin on | |
filetype indent on | |
" Highlight search terms... | |
set hlsearch | |
set incsearch " ...dynamically as they are typed. | |
set ruler | |
set shortmess=atI | |
set visualbell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment