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

plugins/dap-ui: require dap to be enabled

Add assertion requiring `plugins.dap` to be enabled when using
`plugins.dap-ui`.
This commit is contained in:
Austin Horstman 2025-11-25 23:16:59 -06:00 committed by Gaétan Lepage
parent 4425fc6d62
commit 08c8af8c01
2 changed files with 12 additions and 0 deletions

View file

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