forked from wklken/k-vim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvimrc.bundles.local
121 lines (100 loc) · 3.04 KB
/
vimrc.bundles.local
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
Plug 'bps/vim-textobj-python'
" Plug 'michaeljsmith/vim-indent-object'
Plug 'godlygeek/tabular'
Plug 'FooSoft/vim-argwrap'
Plug 'tweekmonster/braceless.vim'
Plug 'Chiel92/vim-autoformat'
" Plug 'tpope/vim-commentary'
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
Plug 'junegunn/fzf.vim'
Plug 'mhinz/vim-startify'
" Plug 'jceb/vim-orgmode'
" Plug 'liuchengxu/vim-which-key', { 'on': ['WhichKey', 'WhichKey!'] }
Plug 'NLKNguyen/papercolor-theme'
Plug 'morhetz/gruvbox'
Plug 'jonathanfilip/vim-lucius'
Plug 'ryanoasis/vim-devicons'
" Plug 'tiagofumo/vim-nerdtree-syntax-highlight'
Plug 'Yggdroot/indentLine'
" Plug 'flazz/vim-colorschemes'
Plug 'tpope/vim-obsession'
Plug 'editorconfig/editorconfig-vim'
" Plug 'tpope/vim-speeddating'
" Plug 'Shougo/vimshell.vim'
" Plug 'itchyny/lightline.vim'
" Plug 'xolox/vim-misc'
" Plug 'xolox/vim-colorscheme-switcher'
" Plug 'Taverius/vim-colorscheme-manager'
" Plug 'jdkanani/vim-material-theme'
" Plug 'staskjs/vim-insert-cdn'
" Plug 'tpope/vim-projectionist'
" Plug 'szw/vim-maximizer'
" Plug 'HerringtonDarkholme/vim-worksheet'
UnPlug 'tomasr/molokai'
" UnPlug 'scrooloose/nerdcommenter'
" UnPlug 'lightline.vim'
" UnPlug 'OmniSharp/omnisharp-vim'
" UnPlug 'vim-airline'
" UnPlug 'vim-airline-themes'
" UnPlug 'altercation/vim-colors-solarized'
if count(g:bundle_groups, 'iex')
Plug 'elixir-editors/vim-elixir'
Plug 'slashmili/alchemist.vim'
endif
if count(g:bundle_groups, 'typescript')
Plug 'leafgarland/typescript-vim'
Plug 'Shougo/vimproc.vim', {'do' : 'make'}
Plug 'Quramy/tsuquyomi'
endif
if count(g:bundle_groups, "golang")
Plug 'peterhoeg/vim-qml'
endif
if count(g:bundle_groups, 'beta')
UnPlug 'nathanaelkane/vim-indent-guides'
endif
if count(g:bundle_groups, 'javascript')
" Plug 'marijnh/tern_for_vim', {'do': 'npm install'}
" main bundles file add this
Plug 'Quramy/vim-js-pretty-template'
Plug 'prettier/vim-prettier', {
\ 'do': 'yarn install',
\ 'for': ['javascript', 'typescript', 'css', 'less', 'scss', 'json', 'graphql', 'markdown', 'vue'] }
" Plug 'jason0x43/vim-js-indent'
" Plugin 'isRuslan/vim-es6'
endif
if count(g:bundle_groups, 'css')
Plug 'hail2u/vim-css3-syntax'
Plug 'groenewege/vim-less'
endif
if count(g:bundle_groups, 'web')
Plug 'mattn/emmet-vim'
endif
if count(g:bundle_groups, 'angularjs')
Plug 'burnettk/vim-angular'
endif
if count(g:bundle_groups, 'angular')
" Plug 'magarcia/vim-angular2-snippets'
" Plug 'bdauria/angular-cli.vim'
endif
if count(g:bundle_groups, 'vue')
Plug 'posva/vim-vue'
endif
if count(g:bundle_groups, 'react')
Plug 'maxmellon/vim-jsx-pretty'
endif
if count(g:bundle_groups, 'django')
Plug 'tweekmonster/django-plus.vim'
" Plug 'umutcoskun/vim-mule'
endif
if count(g:bundle_groups, 'flask')
" Plug 'lepture/vim-jinja'
endif
if count(g:bundle_groups, 'csharp')
Plug 'OmniSharp/omnisharp-vim', { 'for': 'csharp' }
endif
if count(g:bundle_groups, 'nodejs')
Plug 'moll/vim-node'
endif
if count(g:bundle_groups, 'java')
Plug 'artur-shaik/vim-javacomplete2'
endif