Skip to content

Instantly share code, notes, and snippets.

@cranic
Created March 21, 2014 18:51
Show Gist options
  • Save cranic/9693247 to your computer and use it in GitHub Desktop.
Save cranic/9693247 to your computer and use it in GitHub Desktop.
set nocompatible " be iMproved
filetype off " required!
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
" let Vundle manage Vundle
" required!
Bundle 'gmarik/vundle'
Bundle 'jelera/vim-javascript-syntax'
Bundle 'pangloss/vim-javascript'
Bundle 'Lokaltog/vim-distinguished'
Bundle 'nathanaelkane/vim-indent-guides'
Bundle 'scrooloose/syntastic'
Bundle 'Valloric/YouCompleteMe'
Bundle 'marijnh/tern_for_vim'
Bundle 'plasticboy/vim-markdown'
set smartindent
set tabstop=4
set shiftwidth=4
set expandtab
set t_Co=256
set number
syntax on
set background=dark
colorscheme monokai
let g:syntastic_check_on_open=1
let g:ycm_add_preview_to_completeopt=0
let g:ycm_confirm_extra_conf=0
set completeopt-=preview
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment