61 lines
1.7 KiB
Plaintext
61 lines
1.7 KiB
Plaintext
""" PLUGINS MANAGEMENT """
|
|
|
|
" NOTE 18-06-24 Got rid of Vundle in favor of vim-plug (why: more recent, supports
|
|
" Neovim, simpler). Commented out plugins that seemed useless, feel free to
|
|
" uncomment them again if you need to
|
|
|
|
" Auto-install vim-plug
|
|
if empty(glob('~/.cache/vim/autoload/plug.vim'))
|
|
silent !curl -fLo ~/.cache/vim/autoload/plug.vim --create-dirs
|
|
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
|
|
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC
|
|
endif
|
|
|
|
" Plugin definition
|
|
call plug#begin('~/.cache/vim/plugged')
|
|
|
|
" Plug 'L9'
|
|
" Plug 'rstacruz/sparkup', {'rtp': 'vim/'}
|
|
Plug 'chriskempson/base16-vim'
|
|
Plug 'tpope/vim-surround'
|
|
" Plug 'tpope/vim-fugitive'
|
|
" Plug 'tpope/vim-repeat'
|
|
Plug 'tpope/tpope-vim-abolish'
|
|
Plug 'vim-airline/vim-airline'
|
|
Plug 'vim-airline/vim-airline-themes'
|
|
Plug 'airblade/vim-gitgutter'
|
|
Plug 'mbbill/undotree'
|
|
Plug 'ludovicchabant/vim-gutentags'
|
|
Plug 'majutsushi/tagbar'
|
|
Plug 'wellle/targets.vim'
|
|
" Plug 'Chiel92/vim-autoformat'
|
|
Plug 'tomtom/tcomment_vim'
|
|
" Plug 'Shougo/denite.nvim'
|
|
" Plug 'tomlion/vim-solidity'
|
|
" Plug 'godlygeek/tabular'
|
|
" Plug 'jrozner/vim-antlr'
|
|
"
|
|
" Plug 'maralla/completor.vim'
|
|
" if has('nvim')
|
|
" Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
|
|
" else
|
|
" Plug 'Shougo/deoplete.nvim'
|
|
" Plug 'roxma/nvim-yarp'
|
|
" Plug 'roxma/vim-hug-neovim-rpc'
|
|
" endif
|
|
" Plug 'zchee/deoplete-jedi'
|
|
|
|
" Plug 'python-mode/python-mode', { 'branch': 'develop' }
|
|
Plug 'junegunn/fzf', {'do': './install --bin'}
|
|
Plug 'junegunn/fzf.vim'
|
|
Plug 'ervandew/supertab'
|
|
Plug 'dpelle/vim-LanguageTool'
|
|
Plug 'terryma/vim-smooth-scroll'
|
|
Plug 'vim-pandoc/vim-pandoc'
|
|
Plug 'vim-pandoc/vim-pandoc-syntax'
|
|
Plug 'idanarye/vim-vebugger'
|
|
Plug 'w0rp/ale'
|
|
|
|
call plug#end()
|
|
|