Created
July 14, 2018 23:23
-
-
Save tylerhoran/5d83e7fdf46debffeb63ffd9174fa6e8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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