Created
July 24, 2012 23:59
-
-
Save ethul/3173519 to your computer and use it in GitHub Desktop.
.vimrc
This file contains hidden or 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
filetype off | |
call pathogen#infect() | |
syntax on | |
filetype plugin indent on | |
set nocompatible | |
set modelines=0 | |
set gfn=Monospace\ 8 | |
set tabstop=2 | |
set softtabstop=2 | |
set shiftwidth=2 | |
set expandtab | |
set textwidth=72 | |
set encoding=utf-8 | |
set autoindent | |
set wildmenu | |
set wildmode=list:longest | |
set visualbell | |
set ttyfast | |
set backspace=indent,eol,start | |
set laststatus=2 | |
set relativenumber | |
set undofile | |
set ignorecase | |
set smartcase | |
set incsearch | |
set formatoptions=crqan1 | |
set scrolloff=3 | |
inoremap <F1> <ESC> | |
nnoremap <F1> <ESC> | |
vnoremap <F1> <ESC> | |
nnoremap / /\v | |
vnoremap / /\v | |
nnoremap <tab> % | |
vnoremap <tab> % |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment