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:
SamPosh 2023-04-20 14:56:16 +05:30 committed by GitHub
parent 9924f7e0a0
commit 6520773c0b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -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'
}, },
} }