mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-08 04:35:58 +01:00
11 lines
213 B
Nix
11 lines
213 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";
|
||
|
};
|
||
|
};
|
||
|
}
|