aboutsummaryrefslogtreecommitdiff
path: root/vimrc
diff options
context:
space:
mode:
Diffstat (limited to 'vimrc')
-rw-r--r--vimrc2
1 files changed, 2 insertions, 0 deletions
diff --git a/vimrc b/vimrc
index 68294d3..710ee76 100644
--- a/vimrc
+++ b/vimrc
@@ -5,6 +5,7 @@ call plug#begin()
5 Plug 'airblade/vim-gitgutter' 5 Plug 'airblade/vim-gitgutter'
6 Plug 'jiangmiao/auto-pairs' 6 Plug 'jiangmiao/auto-pairs'
7 Plug 'ctrlpvim/ctrlp.vim' 7 Plug 'ctrlpvim/ctrlp.vim'
8 Plug 'yegappan/grep'
8 Plug 'neoclide/coc.nvim', {'branch': 'release', 'do': 'npm install'} 9 Plug 'neoclide/coc.nvim', {'branch': 'release', 'do': 'npm install'}
9call plug#end() 10call plug#end()
10 11
@@ -21,6 +22,7 @@ nnoremap <C-Left> :bprevious<cr>
21nnoremap <C-q> :copen<cr> 22nnoremap <C-q> :copen<cr>
22nnoremap <C-p> :CtrlP<cr> 23nnoremap <C-p> :CtrlP<cr>
23nnoremap <C-b> :CtrlPBuffer<cr> 24nnoremap <C-b> :CtrlPBuffer<cr>
25nnoremap <C-g> :Rg<cr>
24 26
25nmap <silent> [g <Plug>(coc-diagnostic-prev) 27nmap <silent> [g <Plug>(coc-diagnostic-prev)
26nmap <silent> ]g <Plug>(coc-diagnostic-next) 28nmap <silent> ]g <Plug>(coc-diagnostic-next)