summaryrefslogtreecommitdiff
path: root/.config/nvim/init.vim
blob: 4afad3bc4cb9a22a0be6d7559ea95bc71d834457 (plain)
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
set runtimepath^=~/.vim runtimepath+=~/.vim/after
let &packpath = &runtimepath
source ~/.vimrc
source ~/.config/nvim/coc.vim

call plug#begin()
Plug 'junegunn/vim-plug'
Plug 'bogado/file-line'
Plug 'editorconfig/editorconfig-vim'
Plug 'google/vim-searchindex'
Plug 'igankevich/mesonic'
Plug 'jackguo380/vim-lsp-cxx-highlight'
Plug 'jamessan/vim-gnupg'
Plug 'javier-lopez/sprunge.vim'
Plug 'neoclide/coc.nvim', {'branch': 'release'}
Plug 'preservim/nerdcommenter'
Plug 'preservim/nerdtree'
Plug 'saltstack/salt-vim'
Plug 'sheerun/vim-polyglot'
Plug 'tmsvg/pear-tree'
Plug 'tpope/vim-eunuch'
Plug 'tpope/vim-fugitive'
Plug 'tpope/vim-surround'
Plug 'vim-scripts/git_patch_tags.vim'
Plug 'Yggdroot/indentLine'
call plug#end()