# HG changeset patch # User luka # Date 1745408897 14400 # Node ID 47fe251d5ce003b5fcc3f826c2d3356c231c068b # Parent a4ec03f77554e87cdeb30573414a5a6dfc138126 minor fixes for hotkeys diff -r a4ec03f77554 -r 47fe251d5ce0 .vimrc --- 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 diff -r a4ec03f77554 -r 47fe251d5ce0 plugins/coc --- 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 a :CocList diagnostics +nnoremap ca :CocList diagnostics " Manage extensions -nnoremap e :CocList extensions +nnoremap ce :CocList extensions " Show commands -nnoremap c :CocList commands +nnoremap cc :CocList commands " Find symbol of current document -nnoremap o :CocList outline +nnoremap co :CocList outline " Search workspace symbols -nnoremap s :CocList -I symbols +nnoremap cs :CocList -I symbols " Do default action for next item -nnoremap j :CocNext +nnoremap cj :CocNext " Do default action for previous item -nnoremap k :CocPrev +nnoremap ck :CocPrev " Resume latest coc list -nnoremap p :CocListResume +nnoremap cp :CocListResume