mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-12-19 17:59:48 +01:00
10 lines
213 B
Nix
10 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";
|
|
};
|
|
};
|
|
}
|