forked from operatorofhell/vim
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugins.vim
More file actions
38 lines (26 loc) · 891 Bytes
/
plugins.vim
File metadata and controls
38 lines (26 loc) · 891 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
34
35
36
37
38
call plug#begin('~/.vim/plugged')
Plug 'scrooloose/nerdtree'
Plug 'AndrewRadev/switch.vim'
Plug 'airblade/vim-gitgutter'
let g:gitgutter_realtime = 1
set updatetime=250
Plug 'godlygeek/tabular'
Plug 'plasticboy/vim-markdown'
let g:airline#extensions#tabline#enabled = 1
let g:airline_theme = 'badwolf'
let g:airline_powerline_fonts = 1
let g:airline#extensions#cursormode#enabled = 0
Plug 'tpope/vim-fugitive'
Plug 'junegunn/gv.vim'
Plug 'shumphrey/fugitive-gitlab.vim'
let g:fugitive_gitlab_domains = ['https://code.makandra.de']
Plug 'rodjek/vim-puppet'
Plug 'ntpeters/vim-better-whitespace'
Plug 'tpope/vim-surround'
Plug 'wincent/terminus'
Plug 'neoclide/coc.nvim', {'do': { -> coc#util#install()}} " Language Server support
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
Plug 'junegunn/fzf.vim'
Plug 'pedrohdz/vim-yaml-folds'
" Initialize plugin system
call plug#end()