flake/nixos/nvim/plugins/dap.nix

14 lines
173 B
Nix
Raw Normal View History

2025-02-06 23:23:02 -06:00
{ pkgs, lib, ... }:
{
programs.nixvim = {
plugins = {
dap = {
enable = true;
};
dap-python = {
enable = true;
};
};
};
}