mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-02 03:21:14 +00:00
16 lines
407 B
Nix
16 lines
407 B
Nix
{lib, ...}:
|
|
with lib; {
|
|
options.vim.debugger.nvim-dap = {
|
|
enable = mkEnableOption "Enable debugging via nvim-dap";
|
|
|
|
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";
|
|
};
|
|
};
|
|
};
|
|
}
|