Skip to content

Instantly share code, notes, and snippets.

@Ignition
Created May 1, 2015 11:50
Show Gist options
  • Save Ignition/259cfb7cef0c64f8d25c to your computer and use it in GitHub Desktop.
Save Ignition/259cfb7cef0c64f8d25c to your computer and use it in GitHub Desktop.
set nocompatible " be iMproved, required
filetype off " required
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'gmarik/Vundle.vim'
Plugin 'tpope/vim-fugitive'
Plugin 'tpope/vim-surround'
Plugin 'tpope/vim-dispatch'
Plugin 'tpope/vim-obsession'
Plugin 'tpope/vim-sleuth'
Plugin 'tpope/vim-repeat'
Plugin 'tpope/vim-commentary'
Plugin 'tpope/vim-sensible'
Plugin 'scrooloose/nerdtree'
Plugin 'scrooloose/syntastic'
Plugin 'OmniSharp/omnisharp-vim'
Plugin 'myint/syntastic-extras'
Plugin 'bling/vim-airline'
Plugin 'groenewege/vim-less'
Plugin 'plasticboy/vim-markdown'
Plugin 'leafgarland/typescript-vim'
Plugin 'jason0x43/vim-js-indent'
Plugin 'altercation/vim-colors-solarized'
Plugin 'Lokaltog/vim-easymotion'
call vundle#end() " required
filetype plugin indent on " required
set encoding=utf-8
let g:airline_powerline_fonts = 1
syntax on
set number
set paste
syntax enable
set background=dark
colorscheme solarized
if has("autocmd")
filetype plugin indent on
endif
set relativenumber
set foldmethod=syntax
set foldlevel=100
set colorcolumn=73,80,100
set nowrap
set undofile
set undodir=~/.vim/undo
set undolevels=1000
set undoreload=10000
set backupdir=~/.vim/backup
set directory=~/.vim/backup
set t_Co=256
set tabstop=2
set shiftwidth=2
set softtabstop=2
set expandtab
set encoding=utf-8
let g:syntastic_cpp_compiler = 'g++'
let g:syntastic_cpp_compiler_options = ' -std=c++11 -stdlib=libc++'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment