nvim: temporarily disabled dapinstall (now dap-buddy)
This commit is contained in:
parent
5194559afe
commit
597764a0ba
2 changed files with 9 additions and 9 deletions
|
@ -49,9 +49,9 @@ M.nvim_dap = function()
|
|||
end -- <<<
|
||||
|
||||
-- DAP installer >>>
|
||||
M.dap_install = function()
|
||||
require("dap-install").setup({
|
||||
installation_path = vim.fn.stdpath("data") .. "/dapinstall/",
|
||||
M.dap_buddy = function()
|
||||
require("dap_buddy").setup({
|
||||
installation_path = vim.fn.stdpath("data") .. "/dap_buddy/",
|
||||
})
|
||||
end -- <<<
|
||||
|
||||
|
|
|
@ -150,12 +150,12 @@ return require('packer').startup({function()
|
|||
require('blake.dap').nvim_dap()
|
||||
end
|
||||
}
|
||||
use { -- DAP adapter installer
|
||||
'Pocco81/DAPInstall.nvim',
|
||||
config = function()
|
||||
require('blake.dap').dap_install()
|
||||
end
|
||||
}
|
||||
-- use { -- DAP adapter installer
|
||||
-- 'Pocco81/dap-buddy.nvim',
|
||||
-- config = function()
|
||||
-- require('blake.dap').dap_buddy()
|
||||
-- end
|
||||
-- }
|
||||
use { -- virtual-text: Print Variable names while debugging
|
||||
'theHamsta/nvim-dap-virtual-text',
|
||||
config = function()
|
||||
|
|
Loading…
Add table
Reference in a new issue