-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugins.vimrc
50 lines (36 loc) · 1.21 KB
/
plugins.vimrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
" Plugins {{{
" Install Vim-Plug and plugins if absent.
if empty(glob('~/.vim/autoload/plug.vim'))
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC
endif
call plug#begin()
" Language Agnostic Syntax Support
Plug 'sheerun/vim-polyglot'
" Code linting, formatting, and navigation.
Plug 'dense-analysis/ale'
" Language Server Protocol interface. (And requirements.)
Plug 'prabirshrestha/vim-lsp' | Plug 'prabirshrestha/async.vim'
" Autocomplete UI. (And requirements.)
Plug 'Shougo/deoplete.nvim' | Plug 'roxma/nvim-yarp' | Plug 'roxma/vim-hug-neovim-rpc'
" Link LSP and Deoplete.
Plug 'lighttiger2505/deoplete-vim-lsp'
" Fuzzy-finding.
Plug 'junegunn/fzf'
Plug 'junegunn/fzf.vim'
" Multiple cursors.
Plug 'terryma/vim-multiple-cursors'
" File browser with git annotation.
Plug 'scrooloose/nerdtree'
Plug 'Xuyuanp/nerdtree-git-plugin'
" Project-based editor configuration.
Plug 'embear/vim-localvimrc'
Plug 'editorconfig/editorconfig-vim'
" Git integrations.
Plug 'tpope/vim-fugitive'
Plug 'airblade/vim-gitgutter'
" Python Autocomplete
" Plug 'zchee/deoplete-jedi'
call plug#end()
" }}}