plugins/dap-python: migrate to mkNeovimPlugin

This commit is contained in:
Austin Horstman 2025-01-26 14:50:43 -06:00
parent 6ff7127291
commit a70168e0fa
No known key found for this signature in database
5 changed files with 151 additions and 109 deletions

View file

@ -1,10 +1,10 @@
{
empty = {
plugins.dap.extensions.dap-python.enable = true;
plugins.dap-python.enable = true;
};
example = {
plugins.dap.extensions.dap-python = {
plugins.dap-python = {
enable = true;
customConfigurations = [
@ -34,12 +34,14 @@
};
default = {
plugins.dap.extensions.dap-python = {
plugins.dap-python = {
enable = true;
console = "integratedTerminal";
includeConfigs = true;
adapterPythonPath = "python3";
settings = {
console = "integratedTerminal";
includeConfigs = true;
};
};
};
}