summaryrefslogtreecommitdiff
path: root/common/home/programs/nixvim/plugins/dap.nix
blob: 88a3ae0acc738bbc7e722ba3558f8872e9ef8c96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ ... }:
{
	enable = true;
	adapters = {
		qemu = {
			type = "server";
			host = "localhost";
			port = 1234,
		};
	};
	configurations = {
		zig = {
			name = "Zig Qemu";
			type = "qemu";
			request: "attach";
		};
	};
}