initial commit
This commit is contained in:
20
homemanager/neovim/lua/plugins/spec/nvim_dap.lua
Normal file
20
homemanager/neovim/lua/plugins/spec/nvim_dap.lua
Normal file
@@ -0,0 +1,20 @@
|
||||
return {
|
||||
'mfussenegger/nvim-dap',
|
||||
dependencies = {
|
||||
{'jay-babu/mason-nvim-dap.nvim', opts = {
|
||||
handlers = {
|
||||
function (config)
|
||||
require('mason-nvim-dap').default_setup(config)
|
||||
end,
|
||||
cppdbg = function (config)
|
||||
config.adapters.lldb = {
|
||||
type = 'executable',
|
||||
command = 'lldb-vscode',
|
||||
name = 'lldb'
|
||||
}
|
||||
require('mason-nvim-dap').default_setup(config)
|
||||
end
|
||||
}
|
||||
}}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user