-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPlugfile.vim
More file actions
39 lines (33 loc) · 1.03 KB
/
Plugfile.vim
File metadata and controls
39 lines (33 loc) · 1.03 KB
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
if has("win32")
call plug#begin('~/vimfiles/bundle')
else
call plug#begin('~/.vim/bundle')
endif
Plug 'ekalinin/Dockerfile.vim'
" Plug 'evanmiller/nginx-vim-syntax'
Plug 'chr4/nginx.vim'
Plug 'hron84/Gemfile.vim'
Plug 'hron84/smarty.vim'
Plug 'hron84/vim-Guardfile'
Plug 'hron84/vim-chef' " { 'for': 'ruby' }
Plug 'hron84/vim-librarian'
Plug 'kchmck/vim-coffee-script'
Plug 'othree/html5.vim' " { 'for': 'html' }
Plug 'puppetlabs/puppet-syntax-vim'
Plug 'scrooloose/syntastic'
Plug 'sjbach/lusty'
Plug 'tpope/vim-haml'
Plug 'tpope/vim-markdown'
Plug 'tpope/vim-rails' " { 'for': 'ruby' }
Plug 'vim-ruby/vim-ruby' " { 'for': 'ruby' }
Plug 'vim-scripts/matchit.zip'
Plug 'vim-scripts/twilight256.vim'
Plug 'crazy-canux/nagios.vim'
Plug 'zainin/vim-mikrotik'
Plug 'pearofducks/ansible-vim'
Plug 'leafgarland/typescript-vim'
Plug 'neoclide/coc.nvim', {'branch': 'release'}
Plug 'neoclide/coc-json', {'do': 'yarn install --frozen-lockfile' }
Plug 'josa42/coc-docker', {'do': 'yarn install --frozen-lockfile' }
Plug 'itkq/fluentd-vim'
call plug#end()