mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-16 12:14:32 +02:00
plugins/dap-python: migrate to mkNeovimPlugin
This commit is contained in:
parent
6ff7127291
commit
a70168e0fa
5 changed files with 151 additions and 109 deletions
|
@ -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;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue