-
Notifications
You must be signed in to change notification settings - Fork 0
/
vimrc.bundles
52 lines (44 loc) · 1.44 KB
/
vimrc.bundles
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
" set the runtime path to include Vundle and initialize
" set rtp+=~/.vim/bundle/Vundle.vim
" call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')
" Install vim-plug if we don't already have it.
if empty(glob("~/.vim/autoload/plug.vim"))
" Ensure all needed directories exist (Thanks @kapadiamush)
silent !mkdir -p ~/.vim/plugged > /dev/null 2>&1
silent !mkdir -p ~/.vim/autoload > /dev/null 2>&1
" Download the actual plugin manager
execute '!curl -fLo ~/.vim/autoload/plug.vim https://raw.github.com/junegunn/vim-plug/master/plug.vim'
endif
" Initialize vim-plug
call plug#begin('~/.vim/plugged')
" Colour Schemes
Plug 'rakr/vim-one'
Plug 'ayu-theme/ayu-vim'
Plug 'fneu/breezy'
Plug 'lifepillar/vim-solarized8'
Plug 'jacoborus/tender.vim'
" Syntax Highlighting
Plug 'sheerun/vim-polyglot', { 'do': 'git reset --hard && ./scripts/build' }
Plug 'ap/vim-css-color'
" Necessary stuff
Plug 'tpope/vim-surround'
Plug 'tpope/vim-repeat'
Plug 'ctrlpvim/ctrlp.vim'
Plug 'tpope/vim-fugitive'
Plug 'tpope/vim-rhubarb'
" Useful stuff
Plug 'vim-scripts/matchit.zip'
Plug 'vim-scripts/tComment'
Plug 'tpope/vim-endwise'
Plug 'danro/rename.vim'
Plug 'vim-airline/vim-airline'
Plug 'rking/ag.vim'
Plug 'jgdavey/tslime.vim'
Plug 'janko-m/vim-test'
" Trying
Plug 'junegunn/goyo.vim'
Plug 'junegunn/limelight.vim'
Plug 'neoclide/coc.nvim', {'branch': 'release'}
call plug#end() " required