mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-29 13:41:04 +01:00
plugins/dap-python: require dap to be explicitly enabled
Instead of automatically enabling `plugins.dap`, require users to explicitly enable it. This prevents silent re-enabling of dap when a user has explicitly disabled it.
This commit is contained in:
parent
8117ab9770
commit
5f74bfcc11
2 changed files with 26 additions and 19 deletions
|
|
@ -1,9 +1,11 @@
|
|||
{
|
||||
empty = {
|
||||
plugins.dap.enable = true;
|
||||
plugins.dap-python.enable = true;
|
||||
};
|
||||
|
||||
example = {
|
||||
plugins.dap.enable = true;
|
||||
plugins.dap-python = {
|
||||
enable = true;
|
||||
|
||||
|
|
@ -34,6 +36,7 @@
|
|||
};
|
||||
|
||||
default = {
|
||||
plugins.dap.enable = true;
|
||||
plugins.dap-python = {
|
||||
enable = true;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue