-
Notifications
You must be signed in to change notification settings - Fork 0
/
.vimrc
34 lines (26 loc) · 782 Bytes
/
.vimrc
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
if empty(glob('~/.vim/autoload/plug.vim'))
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC
endif
" plugin management
call plug#begin('~/.vim/plugged')
"Sensible - we will see
Plug 'tpope/vim-sensible'
" markdown
Plug 'godlygeek/tabular' | Plug 'tpope/vim-markdown'
Plug 'iamcco/markdown-preview.nvim', { 'do': { -> mkdp#util#install() } }
"status bar
Plug 'itchyny/lightline.vim'
"surrounding brackets
Plug 'tpope/vim-surround'
"File tree
Plug 'scrooloose/nerdtree'
"fuzzy search
Plug 'junegunn/fzf'
"git
Plug 'junegunn/fzf'
Plug 'airblade/vim-gitgutter'
"completion
Plug 'neoclide/coc.nvim', {'branch': 'release'}
call plug#end()