vim added Rustdebug command
This commit is contained in:
parent
f893dc559d
commit
836aa54216
|
@ -19,3 +19,4 @@ target user, some stuff will need to run as root.
|
||||||
[ ] add options for help, only local installs, complete installs and so on
|
[ ] add options for help, only local installs, complete installs and so on
|
||||||
[ ] add vim shortcut to resize splits
|
[ ] add vim shortcut to resize splits
|
||||||
[ ] take a look at autoclosing plugins for nvim
|
[ ] take a look at autoclosing plugins for nvim
|
||||||
|
[ ] Check if :Rustdebug works with regular vim
|
||||||
|
|
|
@ -162,9 +162,12 @@ nnoremap <silent> <Space>bw <Cmd>BufferOrderByWindowNumber<CR>
|
||||||
" :BarbarDisable - very bad command, should never be used
|
" :BarbarDisable - very bad command, should never be used
|
||||||
"
|
"
|
||||||
|
|
||||||
" packages
|
" debuging
|
||||||
packadd termdebug
|
packadd termdebug
|
||||||
|
|
||||||
|
" debuggin for rust
|
||||||
|
command Rustdebug :let termdebugger="rust-gdb" | :Termdebug
|
||||||
|
|
||||||
color terafox
|
color terafox
|
||||||
|
|
||||||
let g:lazygit_floating_window_winblend = 0 " transparency of floating window
|
let g:lazygit_floating_window_winblend = 0 " transparency of floating window
|
||||||
|
|
|
@ -81,5 +81,8 @@ command W :SudaWrite
|
||||||
command E :SudaRead
|
command E :SudaRead
|
||||||
" Set completeopt to have a better completion experience"
|
" Set completeopt to have a better completion experience"
|
||||||
set completeopt=menuone,noinsert,noselect
|
set completeopt=menuone,noinsert,noselect
|
||||||
" packages
|
" debuging
|
||||||
packadd termdebug
|
packadd termdebug
|
||||||
|
|
||||||
|
" debuggin for rust
|
||||||
|
command Rustdebug :let termdebugger="rust-gdb" | :Termdebug
|
||||||
|
|
|
@ -70,5 +70,8 @@ map <Leader>% :split<CR>
|
||||||
command W :w ! sudo tee %
|
command W :w ! sudo tee %
|
||||||
" Set completeopt to have a better completion experience"
|
" Set completeopt to have a better completion experience"
|
||||||
set completeopt=menuone,noinsert,noselect
|
set completeopt=menuone,noinsert,noselect
|
||||||
" packages
|
" debuging
|
||||||
packadd termdebug
|
packadd termdebug
|
||||||
|
|
||||||
|
" debuggin for rust
|
||||||
|
command Rustdebug :let termdebugger="rust-gdb" | :Termdebug
|
||||||
|
|
Loading…
Reference in New Issue