Mercurial > vim
changeset 1:47fe251d5ce0
minor fixes for hotkeys
| author | luka |
|---|---|
| date | Wed, 23 Apr 2025 07:48:17 -0400 |
| parents | a4ec03f77554 |
| children | 13ee7346431d |
| files | .vimrc plugins/coc |
| diffstat | 2 files changed, 13 insertions(+), 8 deletions(-) [+] |
line wrap: on
line diff
--- a/.vimrc Fri Apr 11 21:07:37 2025 -0400 +++ b/.vimrc Wed Apr 23 07:48:17 2025 -0400 @@ -10,6 +10,11 @@ source $HOME/.vim/plugins/taghelp source /home/luka/.vim/plugins/dbtables.vim +let g:db_user = "budgeter_db_user" " Replace with your default database username +let g:db_password = "qSTedfw39(0" " Replace with your default database password +let g:db_name = "budgeter" " Replace with your default database name +let g:db_host = "127.0.0.1" " Replace with your default database name + syntax on syntax enable
--- a/plugins/coc Fri Apr 11 21:07:37 2025 -0400 +++ b/plugins/coc Wed Apr 23 07:48:17 2025 -0400 @@ -146,18 +146,18 @@ " Mappings for CoCList " Show all diagnostics -nnoremap <silent><nowait> <space>a :<C-u>CocList diagnostics<cr> +nnoremap <silent><nowait> <Leader>ca :<C-u>CocList diagnostics<cr> " Manage extensions -nnoremap <silent><nowait> <space>e :<C-u>CocList extensions<cr> +nnoremap <silent><nowait> <Leader>ce :<C-u>CocList extensions<cr> " Show commands -nnoremap <silent><nowait> <space>c :<C-u>CocList commands<cr> +nnoremap <silent><nowait> <Leader>cc :<C-u>CocList commands<cr> " Find symbol of current document -nnoremap <silent><nowait> <space>o :<C-u>CocList outline<cr> +nnoremap <silent><nowait> <Leader>co :<C-u>CocList outline<cr> " Search workspace symbols -nnoremap <silent><nowait> <space>s :<C-u>CocList -I symbols<cr> +nnoremap <silent><nowait> <Leader>cs :<C-u>CocList -I symbols<cr> " Do default action for next item -nnoremap <silent><nowait> <space>j :<C-u>CocNext<CR> +nnoremap <silent><nowait> <Leader>cj :<C-u>CocNext<CR> " Do default action for previous item -nnoremap <silent><nowait> <space>k :<C-u>CocPrev<CR> +nnoremap <silent><nowait> <Leader>ck :<C-u>CocPrev<CR> " Resume latest coc list -nnoremap <silent><nowait> <space>p :<C-u>CocListResume<CR> +nnoremap <silent><nowait> <Leader>cp :<C-u>CocListResume<CR>
