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() " let Vundle manage Vundle, required Plugin 'VundleVim/Vundle.vim' " All of your Plugins must be added before the following line call vundle#end() " required filetype plugin indent on " required Plugin 'altercation/vim-colors-solarized' Plugin 'ekalinin/Dockerfile.vim' Plugin 'garbas/vim-snipmate' Plugin 'godlygeek/tabular' Plugin 'honza/vim-snippets' Plugin 'MarcWeber/vim-addon-mw-utils' Plugin 'rodjek/vim-puppet' Plugin 'tomtom/tlib_vim' Plugin 'vim-syntastic/syntastic' " Brief help " :PluginList - lists configured plugins " :PluginInstall - installs plugins; append `!` to update or just :PluginUpdate " :PluginSearch foo - searches for foo; append `!` to refresh local cache " :PluginClean - confirms removal of unused plugins; append `!` to auto-approve removal " " see :h vundle for more details or wiki for FAQ " Put your non-Plugin stuff after this line syntax on set encoding=utf-8 set termencoding=utf-8 set autoindent set background=dark set backspace=2 set expandtab set fillchars+=stl:\ ,stlnc:\ set laststatus=2 set smarttab set statusline+=%#warningmsg# set statusline+=%{SyntasticStatuslineFlag()} set statusline+=%* set t_Co=256 let g:solarized_termtrans = 1 " This gets rid of the grey background colorscheme solarized let g:syntastic_always_populate_loc_list = 1 let g:syntastic_auto_loc_list = 1 let g:syntastic_check_on_open = 1 let g:syntastic_check_on_wq = 0 let g:syntastic_enable_signs = 1 let g:syntastic_ruby_checkers = ['rubocop'] let g:syntastic_quiet_messages = {'level': 'warnings'} let g:vim_markdown_folding_disabled = 1 source ~/.vimrc_os_specific