added sample for python dap
Python is mostly used language . Recently I spent around 2 weeks to figure out working solution. Actually I forked it from Kickstart.nvim. thought of adding this example so that other's need not to spend that much time.
This commit is contained in:
parent
9924f7e0a0
commit
6520773c0b
|
@ -32,13 +32,16 @@ return {
|
||||||
|
|
||||||
-- You can provide additional configuration to the handlers,
|
-- You can provide additional configuration to the handlers,
|
||||||
-- see mason-nvim-dap README for more information
|
-- see mason-nvim-dap README for more information
|
||||||
handlers = {},
|
handlers = {
|
||||||
|
-- python = require('kickstart.plugins.dap.handler.python'),
|
||||||
|
},
|
||||||
|
|
||||||
-- You'll need to check that you have the required things installed
|
-- You'll need to check that you have the required things installed
|
||||||
-- online, please don't ask me how to install them :)
|
-- online, please don't ask me how to install them :)
|
||||||
ensure_installed = {
|
ensure_installed = {
|
||||||
-- Update this to ensure that you have the debuggers for the langs you want
|
-- Update this to ensure that you have the debuggers for the langs you want
|
||||||
'delve',
|
'delve',
|
||||||
|
-- 'python'
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue