Skip to content

Instantly share code, notes, and snippets.

@EddM
Created June 1, 2015 18:34
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 EddM/35ce8b257296cfbf32bd to your computer and use it in GitHub Desktop.
Save EddM/35ce8b257296cfbf32bd to your computer and use it in GitHub Desktop.
syntax on
set number
set nocompatible
set ruler
set laststatus=2
set tabstop=2
set shiftwidth=2
set expandtab
" graphical vim
"set guifont=Droid\ Sans\ Mono:h14
set guifont=Droid\ Sans\ Mono\ for\ Powerline:h14
set linespace=4
" Plugins
filetype off " Req'd for vundle
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'gmarik/Vundle.vim'
Plugin 'chriskempson/base16-vim'
Bundle 'bling/vim-airline'
Bundle 'kien/ctrlp.vim'
"Bundle 'scrooloose/nerdtree'
Bundle 'airblade/vim-gitgutter'
Bundle 'ngmy/vim-rubocop'
call vundle#end()
filetype plugin indent on
" Plugin-specific
let g:ctrlp_working_path_mode = 0
let g:ctrlp_clear_cache_on_exit = 0
let g:airline_powerline_fonts= 1
" Theme
let base16colorspace=256
set background=dark
colorscheme base16-default
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment