Git config updates

This commit is contained in:
2021-06-17 16:22:17 -05:00
parent 84573c1f70
commit 9da41d8cb0
6 changed files with 48 additions and 2 deletions

12
nvim/coc Normal file
View File

@ -0,0 +1,12 @@
inoremap <silent><expr> <cr> pumvisible() ? coc#_select_confirm() : "\<C-g>u\<CR>\<c-r>=coc#on_enter()\<CR>"
" use <tab> for trigger completion and navigate to the next complete item
function! s:check_back_space() abort
let col = col('.') - 1
return !col || getline('.')[col - 1] =~ '\s'
endfunction
inoremap <silent><expr> <Tab>
\ pumvisible() ? "\<C-n>" :
\ <SID>check_back_space() ? "\<Tab>" :
\ coc#refresh()