function! s:smart_source_rc(name) call s:source_rc(a:name . '.rc.vim') call s:source_rc(a:name . '.local.rc.vim') endfunction function! s:source_rc(path) let l:f_path = fnameescape(expand('~/.vim/rc/' . a:path)) if filereadable(l:f_path) execute 'source' . l:f_path endif endfunction " Navigation {{ Plug 'file-line' Plug 'tpope/vim-vinegar' Plug 'tpope/vim-fugitive' " , { 'on': ['Gblame', 'Gdiff', 'Gcommit', 'Gstatus', 'Gwrite'] } " {{ nnoremap gb :Gblame nnoremap gc :Gcommit nnoremap gd :Gdiff nnoremap gs :Gstatus nnoremap gw :Gwrite " }} Plug 'sandeepcr529/Buffet.vim', { 'on': 'Bufferlist' } " {{ nnoremap :Bufferlist " }} " }} Plug 'ctrlpvim/ctrlp.vim' call s:smart_source_rc('plugins/ctrlp') " ag / ack {{ if executable('ag') Plug 'rking/ag.vim' " {{ nmap a :Ag nmap i* :Ag-i'\b\b' nmap * :Ag'\b\b' command! Todo Ag! TODO " }} elseif executable('ack') Plug 'mileszs/ack.vim' " {{ nmap a :Ack nmap i* :Ack-i'\b\b' nmap * :Ack'\<\>' command! Todo Ack! TODO " }} endif " }} " Autocomplete {{ if has('lua') Plug 'Shougo/neocomplete.vim' call s:smart_source_rc('plugins/neocomps') else Plug 'Shougo/neocomplcache.vim' call s:smart_source_rc('plugins/neocomps') end " Programming {{ Plug 'majutsushi/tagbar' " {{ nnoremap :TagbarToggle " Autofocus tagbar let g:tagbar_autofocus = 1 " }} " syntastic {{ if !has('nvim') " Only use if not neovim, on neovim we have Neomake Plug 'scrooloose/syntastic' call s:smart_source_rc('plugins/syntastic') endif " }} Plug 'tomtom/tcomment_vim' " , { 'on': ['TComment', 'TCommentBlock'] } " {{ nnoremap // :TComment vnoremap // :TCommentBlock " }} " }} Plug 'tpope/vim-surround' " GUI {{ Plug 'bling/vim-airline' " {{ " Use short-form mode text let g:airline_mode_map = { \ '__' : '-', \ 'n' : 'N', \ 'i' : 'I', \ 'R' : 'R', \ 'c' : 'C', \ 'v' : 'V', \ 'V' : 'V', \ '' : 'V', \ 's' : 'S', \ 'S' : 'S', \ '' : 'S', \ } let g:airline#extensions#whitespace#trailing_format = 'tw[%s]' let g:airline#extensions#whitespace#mixed_indent_format = 'i[%s]' let g:airline_left_sep='' let g:airline_left_alt_sep='' let g:airline_right_sep='' let g:airline_right_alt_sep='' let g:airline#extensions#tabline#enabled = 1 let g:airline#extensions#tabline#left_sep = ' ' let g:airline#extensions#tabline#left_alt_sep = '|' " }} Plug 'gregsexton/MatchTag' Plug 'rizzatti/dash.vim', { 'on': 'Dash'} " }} " Filetypes {{ " Plug 'PreserveNoEOL' " {{ let g:PreserveNoEOL = 1 " }} Plug 'ViViDboarder/vim-forcedotcom' Plug 'avakhov/vim-yaml' Plug 'dart-lang/dart-vim-plugin' Plug 'fatih/vim-go' Plug 'groovy.vim' Plug 'hsanson/vim-android' Plug 'pangloss/vim-javascript' Plug 'pdurbin/vim-tsv' Plug 'tfnico/vim-gradle' Plug 'tmux-plugins/vim-tmux' " }} " Python {{ Plug 'alfredodeza/coveragepy.vim' Plug 'alfredodeza/pytest.vim' Plug 'davidhalter/jedi-vim' " {{ let g:jedi#completions_enabled = 0 let g:jedi#auto_vim_configuration = 0 " }} Plug 'klen/python-mode' " {{ let g:pymode_lint = 1 let g:pymode_lint_on_write = 0 let g:pymode_lint_checkers = ['flake8'] let g:pymode_rope = 0 let g:pymode_rope_completion = 0 let g:pymode_rope_complete_on_dot = 0 let g:pymode_breakpoint = 0 "}} " }} " Themes {{ Plug 'altercation/vim-colors-solarized' Plug 'candy.vim' Plug 'eclipse.vim' Plug 'morhetz/gruvbox' Plug 'nanotech/jellybeans.vim' Plug 'nuvola.vim' Plug 'summerfruit256.vim' Plug 'therubymug/vim-pyte' Plug 'vividchalk.vim' Plug 'wombat256.vim' " }} " System {{ " neomake / vim-dispatch {{ if has('nvim') Plug 'benekastah/neomake' " {{ nmap nm :Neomake nnoremap :Neomake let g:neomake_python_makers = ['flake8'] " }} else Plug 'tpope/vim-dispatch' nnoremap :Make command! TagsUpdate Dispatch ctags -R . endif " }} Plug 'Shougo/vimproc.vim', { 'do': 'make' } Plug 'tpope/vim-repeat' " emacs bindinds in insert Plug 'tpope/vim-rsi' Plug 'ViViDboarder/QFixToggle' " {{ " Toggle QuickFix window nnoremap :QFix " }} " }}