Skip to content

Commit

Permalink
Update 1/13/2020
Browse files Browse the repository at this point in the history
  • Loading branch information
Evan Thomas committed Jan 14, 2021
1 parent c604d41 commit 1d4e36e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .vim/.vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ let g:go_fmt_command = "goimports"

Plug 'bitc/vim-hdevtools'
Plug 'https://github.com/dan-t/vim-hsimport'
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
Plug 'https://github.com/junegunn/fzf.vim'
Plug 'https://github.com/prettier/vim-prettier' " TODO: write your own aucmd
" let g:black_linelength = 79
Expand Down
3 changes: 2 additions & 1 deletion .vim/plugin/mystuff/coc.vim
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ nmap <silent> gw <Plug>(coc-references)


" nnoremap <expr><C-f> coc#util#has_float() ? coc#util#float_scroll(1) : "\<C-f>"
nnoremap <expr><C-n> coc#util#has_float() ? coc#util#float_scroll(0) : "\<C-b>"
" nnoremap <expr><C-n> coc#util#has_float() ? coc#util#float_scroll(0) : "\<C-b>"
nnoremap <expr><C-n> <Plug>coc-float-jump
command! -nargs=0 CocNextErr :call CocAction('diagnosticNext')<CR>
command! -nargs=0 CocPrevErr :call CocAction('diagnosticPrevious')<CR>
Expand Down

0 comments on commit 1d4e36e

Please sign in to comment.