Skip to content

Instantly share code, notes, and snippets.

@tylerhoran
Created July 14, 2018 23:23
Show Gist options
  • Save tylerhoran/5d83e7fdf46debffeb63ffd9174fa6e8 to your computer and use it in GitHub Desktop.
Save tylerhoran/5d83e7fdf46debffeb63ffd9174fa6e8 to your computer and use it in GitHub Desktop.
set nocompatible
filetype off
set paste
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
Plugin 'vim-airline/vim-airline'
Plugin 'scrooloose/nerdtree'
Plugin 'vim-airline/vim-airline-themes'
Plugin 'tpope/vim-rails'
Plugin 'vim-syntastic/syntastic'
Plugin 'ctrlpvim/ctrlp.vim'
Plugin 'tpope/vim-commentary'
call vundle#end()
filetype plugin indent on
let g:AirlineTheme='solarized'
let NERDTreeMinimalUI = 1
let NERDTreeDirArrows = 1
let NERDTreeShowHidden=1
nmap \ :NERDTreeToggle<CR>
filetype plugin indent on
set expandtab
set tabstop=2
set softtabstop=2
set shiftwidth=2
autocmd BufWritePre * %s/\s\+$//e
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment