mirror of
https://github.com/genebean/dots.git
synced 2026-03-27 09:27:44 -04:00
69 lines
2.2 KiB
VimL
69 lines
2.2 KiB
VimL
filetype off " required by Vundle. filetype is reenabled after Vundle starts
|
|
|
|
" set the runtime path to include Vundle and initialize
|
|
set rtp+=~/.vim/bundle/Vundle.vim
|
|
call vundle#begin()
|
|
|
|
" let Vundle manage Vundle, required for Vundle to work right
|
|
Plugin 'VundleVim/Vundle.vim'
|
|
|
|
Plugin 'altercation/vim-colors-solarized'
|
|
Plugin 'ekalinin/Dockerfile.vim'
|
|
Plugin 'elzr/vim-json'
|
|
Plugin 'garbas/vim-snipmate'
|
|
Plugin 'godlygeek/tabular'
|
|
Plugin 'honza/vim-snippets'
|
|
Plugin 'MarcWeber/vim-addon-mw-utils'
|
|
Plugin 'mrk21/yaml-vim'
|
|
Plugin 'rodjek/vim-puppet'
|
|
Plugin 'tomtom/tlib_vim'
|
|
Plugin 'vim-ruby/vim-ruby'
|
|
Plugin 'vim-syntastic/syntastic'
|
|
|
|
" All of your Plugins must be added before the following line
|
|
call vundle#end()
|
|
filetype plugin indent on " required for plugins to be able to adjust indent
|
|
|
|
" 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 " Always display the statusline in all windows
|
|
set noshowmode " Hide the default mode text (e.g. -- INSERT -- below the statusline)
|
|
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
|
|
|
|
" This has to come after colorscheme to not be masked
|
|
highlight ColorColumn ctermbg=232
|
|
let &colorcolumn=join(range(81,999),",")
|
|
|
|
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
|