This repository was archived by the owner on Jul 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplug.vim
More file actions
82 lines (66 loc) · 2.18 KB
/
plug.vim
File metadata and controls
82 lines (66 loc) · 2.18 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
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
" Preamble --------------------------------------------------------------- {{{
if has('vim_starting')
set nocompatible
if has('win32') || has('win64')
" Use ~/.vim for user runtime on windows too.
let &runtimepath=substitute(&runtimepath,
\ '\(Documents and Settings\|Users\)[\\/][^\\/,]*[\\/]\zsvimfiles\>',
\ '.vim', 'g')
endif
endif
if empty(glob('~/.vim/autoload/plug.vim'))
silent !curl -s -fLo ~/.vim/autoload/plug.vim --create dirs
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC
endif
call plug#begin('~/.vim/plugdir')
" }}}
Plug 'lifepillar/vim-solarized8'
Plug 'chrisbra/Recover.vim'
Plug 'ervandew/supertab'
Plug 'scrooloose/nerdcommenter'
Plug 'scrooloose/syntastic'
Plug 'simnalamburt/vim-mundo'
Plug 'tpope/vim-abolish'
Plug 'tpope/vim-repeat'
Plug 'tpope/vim-fugitive'
Plug 'tpope/vim-eunuch'
Plug 'tpope/vim-surround'
Plug 'mhinz/vim-signify'
Plug 'vim-scripts/a.vim'
Plug 'vim-scripts/BufOnly.vim'
Plug 'Yggdroot/indentLine'
Plug 'haya14busa/incsearch.vim'
Plug 'wsdjeg/vim-fetch'
Plug 'RRethy/vim-illuminate'
Plug 'junegunn/vim-peekaboo'
Plug 'tweekmonster/startuptime.vim'
Plug '~/.fzf'
Plug 'junegunn/fzf.vim'
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
Plug 'ryanoasis/vim-devicons'
Plug 'kana/vim-textobj-user'
Plug 'kana/vim-textobj-function'
Plug 'kana/vim-textobj-indent'
Plug 'sgur/vim-textobj-parameter'
Plug 'bps/vim-textobj-python', {'for': 'python'}
Plug 'SirVer/ultisnips'
Plug 'honza/vim-snippets'
Plug 'hdima/python-syntax', {'for': 'python'}
Plug 'elzr/vim-json', {'for': 'json'}
Plug 'Mizuchi/STL-Syntax', {'for': 'cpp'}
Plug 'octol/vim-cpp-enhanced-highlight', {'for': 'cpp'}
Plug 'lepture/vim-jinja', {'for': ['html', 'jinja']}
Plug 'rust-lang/rust.vim', {'for': ['rust']}
Plug 'JamshedVesuna/vim-markdown-preview', {'for': 'markdown'}
if v:version > 704
Plug 'Valloric/YouCompleteMe'
endif
" Postamble -------------------------------------------------------------- {{{
let g:siteplug=expand('~/.vim/plug-site.vim')
if filereadable(g:siteplug)
execute 'source' g:siteplug
endif
call plug#end()
" }}}