dotvim/.vim/plugins.vim

54 lines
1.8 KiB
VimL
Raw Normal View History

2015-01-28 10:05:47 +00:00
call plug#begin('~/.vim/plugged')
Plug 'https://github.com/FooSoft/vim-argwrap.git'
2015-01-28 10:05:47 +00:00
Plug 'https://github.com/Lokaltog/vim-easymotion.git'
2015-01-29 14:37:39 +00:00
Plug 'https://github.com/airblade/vim-gitgutter.git'
Plug 'https://github.com/antoyo/vim-licenses.git'
Plug 'https://github.com/bkad/CamelCaseMotion'
2015-01-28 10:05:47 +00:00
Plug 'https://github.com/bling/vim-airline.git'
Plug 'https://github.com/dhruvasagar/vim-table-mode.git'
Plug 'https://github.com/junegunn/vim-easy-align.git'
2015-01-28 10:05:47 +00:00
Plug 'https://github.com/kien/ctrlp.vim.git'
Plug 'https://github.com/mattn/emmet-vim.git'
Plug 'https://github.com/michaeljsmith/vim-indent-object.git'
2015-01-28 10:05:47 +00:00
Plug 'https://github.com/nathanaelkane/vim-indent-guides.git'
Plug 'https://github.com/ntpeters/vim-better-whitespace.git'
Plug 'https://github.com/pangloss/vim-javascript.git'
2015-01-28 10:05:47 +00:00
Plug 'https://github.com/plasticboy/vim-markdown.git'
Plug 'https://github.com/scrooloose/syntastic.git'
2015-01-29 10:57:53 +00:00
Plug 'https://github.com/tomasr/molokai.git'
Plug 'https://github.com/tpope/vim-abolish.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'
Plug 'https://github.com/tpope/vim-repeat'
2015-01-29 11:54:42 +00:00
Plug 'https://github.com/tpope/vim-speeddating.git'
Plug 'https://github.com/tpope/vim-surround'
Plug 'https://github.com/tpope/vim-unimpaired.git'
2015-01-29 00:36:44 +00:00
Plug 'https://github.com/vim-latex/vim-latex.git'
2015-01-28 10:05:47 +00:00
call plug#end()
" syntastic
2015-01-29 11:54:42 +00:00
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-01-29 11:54:42 +00:00
let g:argwrap_padded_braces = '{'
" vim-betterwhitespace
let g:better_whitespace_enabled = 0
let g:strip_whitespace_on_save = 1
" vim-latex
let g:Tex_DefaultTargetFormat = 'pdf'
let g:Tex_MultipleCompileFormats = 'pdf, aux'
" vim-licenses
2015-01-29 11:54:42 +00:00
let g:licenses_authors_name = 'Alex Yatskov <alex@foosoft.net>'
" vim-table-mode
2015-01-29 11:54:42 +00:00
let g:table_mode_corner = '|'