dotfiles/.vimrc

52 lines
1.1 KiB
VimL
Raw Normal View History

set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'tpope/vim-fugitive'
2014-11-11 21:43:07 +00:00
Plugin 'tpope/vim-commentary'
Plugin 'tpope/vim-surround'
Plugin 'scrooloose/syntastic'
2014-11-11 21:52:13 +00:00
Plugin 'scrooloose/nerdtree'
Plugin 'bling/vim-airline'
Plugin '29decibel/codeschool-vim-theme'
2014-11-11 22:01:25 +00:00
Plugin 'Shougo/neocomplcache.vim'
2014-11-11 22:03:45 +00:00
Plugin 'kien/ctrlp.vim'
" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required
" To ignore plugin indent changes, instead use:
"filetype plugin on
colorscheme codeschool
" Airline
set laststatus=2
2014-11-11 21:32:48 +00:00
" Tabs and indents
set tabstop=4
set shiftwidth=4
set softtabstop=4
set smarttab
set expandtab
2014-11-11 21:24:00 +00:00
" Allow mouse usage
set mouse=a
2014-11-11 21:24:00 +00:00
" Always use vertical diffs
set diffopt+=vertical
2014-11-11 21:32:48 +00:00
" Syntax highlighting
syntax on
2014-11-11 21:32:48 +00:00
" NERDTree
autocmd StdinReadPre * let s:std_in=1
autocmd VimEnter * if argc() == 0 && !exists("s:std_in") | NERDTree | endif
map <C-n> :NERDTreeToggle<CR>
2014-11-11 22:01:25 +00:00
" Autocomplete
let g:neocomplcache_enable_at_startup = 1