feat: option to autostart debugger UI

This commit is contained in:
Ching Pei Yang 2023-05-05 15:31:55 +02:00
commit 595e76ed2f
2 changed files with 32 additions and 12 deletions

View file

@ -5,6 +5,11 @@ with lib; {
ui = {
enable = mkEnableOption "Enable UI extension for nvim-dap";
autoStart = mkOption {
type = types.bool;
default = true;
description = "Automatically Opens and Closes DAP-UI upon starting/closing a debugging session";
};
};
};
}