1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-29 05:31:05 +01:00

plugins/dap-go: 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:
Austin Horstman 2025-11-25 23:16:45 -06:00 committed by Gaétan Lepage
parent 5f74bfcc11
commit f72c25a5ce
2 changed files with 11 additions and 4 deletions

View file

@ -1,9 +1,11 @@
{
empty = {
plugins.dap.enable = true;
plugins.dap-go.enable = true;
};
default = {
plugins.dap.enable = true;
plugins.dap-go = {
enable = true;