Skip to content

Instantly share code, notes, and snippets.

@ethul
Created July 24, 2012 23:59
Show Gist options
  • Save ethul/3173519 to your computer and use it in GitHub Desktop.
Save ethul/3173519 to your computer and use it in GitHub Desktop.
.vimrc
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