mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-08 02:15:59 +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";
|
|
};
|
|
};
|
|
}
|