Skip to content

Instantly share code, notes, and snippets.

@garrettwilkin
Created April 17, 2012 23:23
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 garrettwilkin/2409842 to your computer and use it in GitHub Desktop.
Save garrettwilkin/2409842 to your computer and use it in GitHub Desktop.
.vimrc file when jslint causes input errors
set nocompatible " be iMproved
filetype off " required!
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
" let Vungle manage Vundle
" required!
Bundle 'gmarik/vundle'
" My Bundles here:
"
" original repos on github
Bundle 'tpope/vim-fugitive'
Bundle 'tpope/vim-pathogen'
Bundle 'Lokaltog/vim-easymotion'
Bundle 'rstacruz/sparkup', {'rtp': 'vim/'}
Bundle 'pangloss/vim-javascript'
Bundle 'guileen/vim-node'
Bundle 'goatslacker/mango.vim'
Bundle 'scrooloose/nerdtree'
Bundle 'hallettj/jslint.vim'
" vim-scripts repos
Bundle 'L9'
Bundle 'FuzzyFinder'
" non github repos
"Bundle 'git://git.wincent/com/command-t.git'
" ...
filetype plugin indent on " required!
"
" Brief help
" :BundleList - list configured bundles
" :BundleInstall(!) - install(update) bundles
" :BundleSearch(!) foo - search(or refresh cache first) for foo
" :BundleClean(!) - confirm(or auto-approve) remove of unused bundles
"
" see :h vundle for more details or wiki for FAQ
" NOTE: comments after Bundle command are not allowed..
" syntax highlighting
set t_Co=256
set background=dark " you can use 'dark' or 'light' as your background
syntax on
color mango
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment