Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adding vimspector and fixing vimcodi #17

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions nvim/configs/mappings.vim
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,10 @@ vnoremap <Leader>Ar :right<CR>
" Plugin specific keybinds

"***********************************************************************************

" COC Keybinds
" vimspector
nmap <leader>dw :call win_gotoid("g:vimspector_session_windows.watches")

"COC Keybinds
" Remap keys for gotos
map <leader>cd <Plug>(coc-definition)
nmap <leader>ct <Plug>(coc-type-definition)
Expand Down
6 changes: 6 additions & 0 deletions nvim/configs/plugin-settings.vim
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"*****************************************************************************************
"
" ___ __ _ ____ __ __ _
" / _ \ / / __ __ ___ _ (_) ___ / __/ ___ / /_ / /_ (_) ___ ___ _ ___
" / ___/ / / / // / / _ `/ / / / _ \ _\ \ / -_)/ __// __/ / / / _ \ / _ `/ (_-<
Expand All @@ -14,6 +15,11 @@
let g:gitgutter_enabled = 1
let g:gitgutter_grep=''

""""""""""""""""
" Vimspector "
""""""""""""""""
let g:vimspector_enable_mappings = 'HUMAN'

"""""""""""
" VimTex "
"""""""""""
Expand Down
6 changes: 4 additions & 2 deletions nvim/configs/plugins.vim
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,7 @@ Plug 'iamcco/markdown-preview.nvim', { 'do': { -> mkdp#util#install() } }
Plug 'etdev/vim-hexcolor'

" codi interactive scratchpad
" Temporary repo, may be deprecated
Plug 'ChristianChiarulli/codi.vim'
Plug 'metakirby5/codi.vim'

" Easy tables in vim
Plug 'dhruvasagar/vim-table-mode'
Expand All @@ -115,6 +114,9 @@ Plug 'wfxr/minimap.vim'
Plug 'easymotion/vim-easymotion'

" Plug 'vimwiki/vimwiki'
"Plug 'vimwiki/vimwiki'

" Plugin 'puremourning/vimspector'
Plug 'puremourning/vimspector'

call plug#end()