Skip to content

Instantly share code, notes, and snippets.

@adityab
Created December 13, 2012 07:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adityab/4274846 to your computer and use it in GitHub Desktop.
Save adityab/4274846 to your computer and use it in GitHub Desktop.
A mostly minimal vimrc
set nocompatible
syntax on
set backspace=eol,indent,start
set autoindent
set smartindent
set cursorline
set incsearch
set expandtab
set shiftwidth=4
set softtabstop=4
set tabstop=4
set number
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
" let Vundle manage Vundle
" required!
Bundle 'gmarik/vundle'
Bundle 'colors'
Bundle 'project.tar.gz'
Bundle 'bufexplorer.zip'
Bundle 'molokai'
Bundle 'The-NERD-tree'
colorscheme molokai
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment