dotvim/.vim/plugins.vim

91 lines
3.3 KiB
VimL
Raw Normal View History

2015-01-28 10:05:47 +00:00
call plug#begin('~/.vim/plugged')
2016-03-03 02:44:12 +00:00
Plug 'https://github.com/Chun-Yang/vim-action-ag.git'
Plug 'https://github.com/FooSoft/vim-argwrap.git'
Plug 'https://github.com/airblade/vim-gitgutter.git'
Plug 'https://github.com/antoyo/vim-licenses.git'
2015-08-14 07:59:41 +00:00
Plug 'https://github.com/b4winckler/vim-angry.git'
Plug 'https://github.com/bkad/CamelCaseMotion'
Plug 'https://github.com/cespare/vim-toml.git'
Plug 'https://github.com/christoomey/vim-sort-motion.git'
2016-03-03 02:44:12 +00:00
Plug 'https://github.com/ctrlpvim/ctrlp.vim.git'
2015-04-28 04:45:07 +00:00
Plug 'https://github.com/derekwyatt/vim-fswitch.git'
Plug 'https://github.com/dhruvasagar/vim-table-mode.git'
Plug 'https://github.com/fatih/vim-go.git'
Plug 'https://github.com/junegunn/vim-easy-align.git'
Plug 'https://github.com/mattn/emmet-vim.git'
Plug 'https://github.com/michaeljsmith/vim-indent-object.git'
Plug 'https://github.com/nathanaelkane/vim-indent-guides.git'
Plug 'https://github.com/ntpeters/vim-better-whitespace.git'
Plug 'https://github.com/othree/html5.vim.git'
Plug 'https://github.com/pangloss/vim-javascript.git'
Plug 'https://github.com/plasticboy/vim-markdown.git'
2016-03-03 02:44:12 +00:00
Plug 'https://github.com/rking/ag.vim.git'
Plug 'https://github.com/rust-lang/rust.vim'
2016-03-03 20:38:39 +00:00
Plug 'https://github.com/schickling/vim-bufonly.git'
Plug 'https://github.com/tomasr/molokai.git'
Plug 'https://github.com/tpope/vim-abolish.git'
2016-02-28 03:32:52 +00:00
Plug 'https://github.com/tpope/vim-bundler.git'
Plug 'https://github.com/tpope/vim-commentary.git'
Plug 'https://github.com/tpope/vim-eunuch.git'
Plug 'https://github.com/tpope/vim-fugitive.git'
2016-02-24 06:21:08 +00:00
Plug 'https://github.com/tpope/vim-rails.git'
Plug 'https://github.com/tpope/vim-repeat'
Plug 'https://github.com/tpope/vim-speeddating.git'
Plug 'https://github.com/tpope/vim-surround'
Plug 'https://github.com/tpope/vim-unimpaired.git'
2015-05-11 11:56:03 +00:00
Plug 'https://github.com/tpope/vim-vinegar.git'
Plug 'https://github.com/tyru/open-browser.vim.git'
2015-07-30 01:39:40 +00:00
Plug 'https://github.com/vasconcelloslf/vim-interestingwords.git'
2016-02-13 19:16:45 +00:00
Plug 'https://github.com/vim-airline/vim-airline-themes.git'
Plug 'https://github.com/vim-airline/vim-airline.git'
Plug 'https://github.com/vim-latex/vim-latex.git'
2015-01-28 10:05:47 +00:00
2015-03-12 11:32:54 +00:00
if has('unix')
2015-04-27 08:39:59 +00:00
Plug 'https://github.com/Valloric/YouCompleteMe.git', { 'do': './install.sh --clang-completer' }
2015-06-27 12:14:33 +00:00
Plug 'https://github.com/marijnh/tern_for_vim', { 'do': 'sudo npm install -g tern; npm install' }
2016-03-20 23:02:36 +00:00
Plug 'https://github.com/scrooloose/syntastic.git', { 'do': 'sudo npm -g install eslint; sudo pip install --upgrade pyflakes' }
2015-03-12 11:27:59 +00:00
endif
2015-01-28 10:05:47 +00:00
call plug#end()
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
2016-02-28 03:32:52 +00:00
" vim-rails
let g:rubycomplete_buffer_loading = 1
let g:rubycomplete_classes_in_global = 1
" vim-table-mode
2015-01-29 11:54:42 +00:00
let g:table_mode_corner = '|'
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