dotvim/.vim/plugins.vim

37 lines
871 B
VimL
Raw Normal View History

2016-06-29 04:25:51 +00:00
" vim-pathogen
runtime bundle/vim-pathogen/autoload/pathogen.vim
execute pathogen#infect()
2016-03-03 02:44:12 +00:00
" ag.vim
let g:ag_working_path_mode="r"
2015-01-30 02:42:28 +00:00
" ctrlp.vim
let g:ctrlp_cmd = 'CtrlPMixed'
2016-03-03 02:44:12 +00:00
let g:ctrlp_working_path_mode = 'ra'
2015-01-30 02:42:28 +00:00
" syntastic
auto FileType go let b:syntastic_mode = "passive"
let g:syntastic_always_populate_loc_list = 1
2016-03-20 23:02:36 +00:00
let g:syntastic_javascript_checkers = ['eslint']
let g:syntastic_python_checkers = ['pyflakes']
2015-01-29 14:47:01 +00:00
" vim-airline
let g:airline#extensions#tabline#enabled = 1
" vim-argwrap
2015-12-17 13:08:13 +00:00
autocmd FileType go let b:argwrap_tail_comma = 1
2015-08-10 08:14:54 +00:00
" vim-gitgutter
let g:gitgutter_max_signs = 10000
" vim-go
let g:go_fmt_command = 'goimports'
" vim-licenses
2015-04-04 11:27:25 +00:00
let g:licenses_authors_name = 'Alex Yatskov <alex@foosoft.net>'
let g:licenses_copyright_holders_name = g:licenses_authors_name
2015-04-27 14:37:36 +00:00
" YouCompleteMe
2015-07-30 01:45:33 +00:00
let g:ycm_check_if_ycm_core_present = 0
2015-04-27 14:37:36 +00:00
let g:ycm_confirm_extra_conf = 0