dotfiles/.vimrc

63 lines
1.3 KiB
VimL
Raw Normal View History

set nocompatible " be iMproved, required
filetype off " required
" Disable bell
set vb
2014-11-21 19:56:52 +00:00
" Ensure vim knows about Go(lang)
2014-11-21 19:54:02 +00:00
set rtp+=$GOROOT/misc/vim
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
2015-06-20 11:42:12 +01:00
" Plugins
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'
2014-11-12 07:04:37 +00:00
Plugin 'rodjek/vim-puppet'
2014-11-13 19:27:26 +00:00
Plugin 'godlygeek/tabular'
2014-11-16 13:33:13 +00:00
Plugin 'ap/vim-buftabline'
2014-11-30 10:04:58 +00:00
Plugin 'vim-scripts/WhiteWash'
2015-04-22 15:22:54 +01:00
Plugin 'jistr/vim-nerdtree-tabs'
" 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
" 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
map <C-n> :NERDTreeToggle<CR>
2014-11-11 22:01:25 +00:00
" Autocomplete
let g:neocomplcache_enable_at_startup = 1
2014-11-15 17:05:36 +00:00
" Set filetypes
au BufRead,BufNewFile *.md set filetype=markdown
2014-11-15 17:05:36 +00:00
au BufRead,BufNewFile *.go set filetype=go