-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugins.vim
46 lines (33 loc) · 1005 Bytes
/
plugins.vim
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
call plug#begin('~/.config/nvim/autoload/plugged')
" Better Syntax Support
Plug 'sheerun/vim-polyglot'
" Auto pairs for '(' '[' '{'
Plug 'jiangmiao/auto-pairs'
" Themes
Plug 'joshdick/onedark.vim'
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
" Quick Commenting
Plug 'tpope/vim-commentary'
" Coc
Plug 'neoclide/coc.nvim', {'branch': 'release'}
" Fzf
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
Plug 'junegunn/fzf.vim'
Plug 'airblade/vim-rooter'
" Session manager
Plug 'mhinz/vim-startify'
" Markdown preview
Plug 'iamcco/markdown-preview.nvim', { 'do': 'cd app && yarn install' }
" Surround
Plug 'tpope/vim-surround'
" Vim Sneak
Plug 'justinmk/vim-sneak'
" Git Integration
Plug 'mhinz/vim-signify'
Plug 'tpope/vim-fugitive'
Plug 'tpope/vim-rhubarb'
Plug 'junegunn/gv.vim'
" Which key
Plug 'liuchengxu/vim-which-key'
call plug#end()