diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2026-04-02 17:52:18 +0200 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2026-04-02 17:52:18 +0200 |
| commit | 20871c5109aa5590384d5e60ebeab3d0d22fdafd (patch) | |
| tree | 0e84f9579c8e132193b5674c9634a08a6253c064 /common/home/programs/nixvim/plugins | |
| parent | 38792110b9bc0dd97b6dcd5bab79857caf450790 (diff) | |
2026-04-02 updates by auto-switch
Diffstat (limited to 'common/home/programs/nixvim/plugins')
| -rw-r--r-- | common/home/programs/nixvim/plugins/dap.nix | 18 | ||||
| -rw-r--r-- | common/home/programs/nixvim/plugins/default.nix | 1 |
2 files changed, 19 insertions, 0 deletions
diff --git a/common/home/programs/nixvim/plugins/dap.nix b/common/home/programs/nixvim/plugins/dap.nix new file mode 100644 index 0000000..88a3ae0 --- /dev/null +++ b/common/home/programs/nixvim/plugins/dap.nix @@ -0,0 +1,18 @@ +{ ... }: +{ + enable = true; + adapters = { + qemu = { + type = "server"; + host = "localhost"; + port = 1234, + }; + }; + configurations = { + zig = { + name = "Zig Qemu"; + type = "qemu"; + request: "attach"; + }; + }; +} diff --git a/common/home/programs/nixvim/plugins/default.nix b/common/home/programs/nixvim/plugins/default.nix index 8b950e8..b199a36 100644 --- a/common/home/programs/nixvim/plugins/default.nix +++ b/common/home/programs/nixvim/plugins/default.nix @@ -8,6 +8,7 @@ plugins = [ "treesitter" "typst-preview" "gitgutter" + "dap" ]; in builtins.listToAttrs ( |