Skip to content

Instantly share code, notes, and snippets.

@abh1nav
Created November 21, 2012 18:48
Show Gist options
  • Save abh1nav/4126831 to your computer and use it in GitHub Desktop.
Save abh1nav/4126831 to your computer and use it in GitHub Desktop.
my vimrc
" Pathogen
call pathogen#infect()
" Font size
set gfn=Menlo:h13
" Line numbers
set nu
" Highlighting
syntax on
" Indenting
filetype indent on
set autoindent
set tabstop=4
set shiftwidth=4
" Python indenting
let g:pyindent_continue = '&sw'
" Search options
set ic " Case insensitive
set hls " Highlight search
" Wrap text
set lbr
" Colour scheme
colorscheme Monokai-Refined
" Automatically open NERDTree
" autocmd vimenter * NERDTree
" Tags
set tags=~/.tags
" Java auto-complete
set complete=.,w,b,u,t,i
" Folding
" set foldmethod=indent
" Bells
set vb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment