This commit is contained in:
2024-09-28 15:20:44 -04:00
parent 7b64052109
commit 0bcd6e9f7e
2 changed files with 4 additions and 0 deletions
+1
View File
@@ -149,6 +149,7 @@ function init_apt() {
net-tools \ net-tools \
ripgrep \ ripgrep \
git \ git \
zsh
} }
function init_debian() { function init_debian() {
+3
View File
@@ -123,7 +123,10 @@ nmap <silent> gr <Plug>(coc-references)
inoremap <silent><expr> <C-f> coc#refresh() inoremap <silent><expr> <C-f> coc#refresh()
inoremap <silent><expr> <C-e> coc#pum#visible() ? coc#_select_confirm() : "\<CR>" inoremap <silent><expr> <C-e> coc#pum#visible() ? coc#_select_confirm() : "\<CR>"
inoremap <silent><expr> <CR> coc#pum#visible() ? coc#_select_confirm() : "\<CR>" inoremap <silent><expr> <CR> coc#pum#visible() ? coc#_select_confirm() : "\<CR>"
nnoremap <silent> K :call ShowDocumentation()<CR> nnoremap <silent> K :call ShowDocumentation()<CR>
nnoremap <nowait><expr> <C-j> coc#float#has_scroll() ? coc#float#scroll(1, 1) : "<C-j>"
nnoremap <nowait><expr> <C-k> coc#float#has_scroll() ? coc#float#scroll(0, 1) : "<C-k>"
" Symbol renaming " Symbol renaming
nmap <leader>rn <Plug>(coc-rename) nmap <leader>rn <Plug>(coc-rename)