nvim: Drop nvim-gdb
nvim-gdb relies on Python and we disabled Python completely sometime back so this has not really been functional. If we feel we require it really for some C work we will enable Python and this package again. Signed-off-by: Sanchayan Maity <maitysanchayan@gmail.com>
This commit is contained in:
parent
1ae0477bfb
commit
f21ea0787b
3 changed files with 0 additions and 16 deletions
|
@ -1,7 +1,3 @@
|
||||||
function! NvimGdbNoTKeymaps()
|
|
||||||
tnoremap <silent> <buffer> <Esc> <C-\><C-n>
|
|
||||||
endfunction
|
|
||||||
|
|
||||||
function! GotoJump()
|
function! GotoJump()
|
||||||
jumps
|
jumps
|
||||||
let j = input("Please select your jump: ")
|
let j = input("Please select your jump: ")
|
||||||
|
|
|
@ -24,8 +24,6 @@ Plug 'whiteinge/diffconflicts'
|
||||||
Plug 'salcode/vim-interactive-rebase-reverse'
|
Plug 'salcode/vim-interactive-rebase-reverse'
|
||||||
" Boost vim command line mode
|
" Boost vim command line mode
|
||||||
Plug 'vim-utils/vim-husk'
|
Plug 'vim-utils/vim-husk'
|
||||||
" GDB
|
|
||||||
Plug 'sakhnik/nvim-gdb', { 'do': ':UpdateRemotePlugins' }
|
|
||||||
" Rainbow Parentheses
|
" Rainbow Parentheses
|
||||||
Plug 'luochen1990/rainbow'
|
Plug 'luochen1990/rainbow'
|
||||||
" Formatting
|
" Formatting
|
||||||
|
|
|
@ -21,16 +21,6 @@ let g:workspace_session_disable_on_args = 1
|
||||||
" Toggle quickfix/location list
|
" Toggle quickfix/location list
|
||||||
let g:toggle_list_no_mappings = 1
|
let g:toggle_list_no_mappings = 1
|
||||||
|
|
||||||
let g:nvimgdb_config_override = {
|
|
||||||
\ 'key_next': 'n',
|
|
||||||
\ 'key_step': 's',
|
|
||||||
\ 'key_finish': 'f',
|
|
||||||
\ 'key_continue': 'c',
|
|
||||||
\ 'key_until': 'u',
|
|
||||||
\ 'key_breakpoint': 'b',
|
|
||||||
\ 'set_tkeymaps': "NvimGdbNoTKeymaps",
|
|
||||||
\ }
|
|
||||||
|
|
||||||
let g:mapleader = "\<Space>"
|
let g:mapleader = "\<Space>"
|
||||||
let g:maplocalleader = ','
|
let g:maplocalleader = ','
|
||||||
let g:which_key_use_floating_win = 1
|
let g:which_key_use_floating_win = 1
|
||||||
|
|
Loading…
Reference in a new issue