1
0
Fork 0
mirror of https://github.com/NotAShelf/neovim-flake.git synced 2025-01-08 04:39:47 +01:00
neovim-flake/modules/debugger/nvim-dap/nvim-dap.nix

11 lines
213 B
Nix
Raw Normal View History

2023-05-04 17:41:11 +02:00
{lib, ...}:
with lib; {
options.vim.debugger.nvim-dap = {
enable = mkEnableOption "Enable debugging via nvim-dap";
ui = {
enable = mkEnableOption "Enable UI extension for nvim-dap";
};
};
}