-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplug_deps.vim
More file actions
33 lines (28 loc) · 919 Bytes
/
Copy pathplug_deps.vim
File metadata and controls
33 lines (28 loc) · 919 Bytes
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
"
" this file contains the plugin dependencies of current configuration
"
" placing them in a separate file makes it easier for
" installation script to run ':PlugInstall' from inside 'vim -u plug_deps',
" which does not automatically source the plugin-specific configurations.
"
call plug#begin('~/.vim/plugged')
Plug 'preservim/nerdtree'
Plug 'rafi/awesome-vim-colorschemes'
Plug 'preservim/nerdcommenter'
Plug 'mileszs/ack.vim'
Plug 'junegunn/fzf'
Plug 'skywind3000/asyncrun.vim'
Plug 'neoclide/coc.nvim', {'branch':'release'}
Plug 'tpope/vim-fugitive'
Plug 'ilyachur/cmake4vim'
Plug 'jackguo380/vim-lsp-cxx-highlight'
Plug 'antiagainst/vim-tablegen'
Plug 'voldikss/vim-floaterm'
" pilot with typescript support
Plug 'pangloss/vim-javascript'
Plug 'leafgarland/typescript-vim'
Plug 'maxmellon/vim-jsx-pretty'
Plug 'ghifarit53/tokyonight-vim'
Plug 'mhinz/vim-startify'
" Initialize plugin system
call plug#end()