Vim: Remove termdebug, fix bindings

This commit is contained in:
Robert Kmiec
2020-11-06 10:58:02 +01:00
parent 2bb72d7103
commit f6c7de729a

View File

@@ -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="<CR>"
let g:UltiSnipsJumpBackwardTrigger="<leader>p"
" yoink configuration
nmap <leader>p <plug>(YoinkPostPasteSwapBack)
nmap <leader>n <plug>(YoinkPostPasteSwapForward)
nmap <leader>yp <plug>(YoinkPostPasteSwapBack)
nmap <leader>yn <plug>(YoinkPostPasteSwapForward)
nmap p <plug>(YoinkPaste_p)
nmap P <plug>(YoinkPaste_P)
@@ -302,12 +302,14 @@ let NERDTreeIgnore=['\.vim$', '\~$', '\.pyc$']
" Tagbar key bindings."
"nmap <leader>t :TlistToggle<cr>
nnoremap <leader>fl :Lines<CR>
nnoremap <leader>ff :FZF!<CR>
nnoremap <leader>fl :Lines!<CR>
nnoremap <leader>fb :Buffers<CR>
inoremap <leader>fs <ESC>:Snippets<CR>
nnoremap <leader>fa :Ag <C-R><C-W><CR>
inoremap <leader>fs <ESC>:Snippets!<CR>
nnoremap <leader>fa :Ag! <C-R><C-W><CR>
nnoremap <leader>ff :FZF<CR>
" Disable context.vim on json files
let g:context_filetype_blacklist = ["json"]
" }}}
" }}}