From f6c7de729a03b74947424c3acf52b73f4cab26ac Mon Sep 17 00:00:00 2001 From: Robert Kmiec Date: Fri, 6 Nov 2020 10:58:02 +0100 Subject: [PATCH] Vim: Remove termdebug, fix bindings --- .vim/vimrc | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/.vim/vimrc b/.vim/vimrc index 2d68202..78f02ce 100644 --- a/.vim/vimrc +++ b/.vim/vimrc @@ -99,7 +99,7 @@ Plugin 'mhinz/vim-startify' call vundle#end() " required " Packages {{{ -packadd termdebug +"packadd termdebug " }}} filetype plugin indent on @@ -284,8 +284,8 @@ let g:UltiSnipsJumpForwardTrigger="" let g:UltiSnipsJumpBackwardTrigger="p" " yoink configuration -nmap p (YoinkPostPasteSwapBack) -nmap n (YoinkPostPasteSwapForward) +nmap yp (YoinkPostPasteSwapBack) +nmap yn (YoinkPostPasteSwapForward) nmap p (YoinkPaste_p) nmap P (YoinkPaste_P) @@ -302,12 +302,14 @@ let NERDTreeIgnore=['\.vim$', '\~$', '\.pyc$'] " Tagbar key bindings." "nmap t :TlistToggle -nnoremap fl :Lines +nnoremap ff :FZF! +nnoremap fl :Lines! nnoremap fb :Buffers -inoremap fs :Snippets -nnoremap fa :Ag +inoremap fs :Snippets! +nnoremap fa :Ag! -nnoremap ff :FZF +" Disable context.vim on json files +let g:context_filetype_blacklist = ["json"] " }}} " }}}