mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-08 19:46:06 +01:00
24 lines
632 B
Nix
24 lines
632 B
Nix
{
|
|
lib,
|
|
...
|
|
}:
|
|
lib.nixvim.plugins.mkNeovimPlugin {
|
|
name = "dap-go";
|
|
package = "nvim-dap-go";
|
|
description = "An extension for nvim-dap providing configurations for launching go debugger.";
|
|
|
|
maintainers = [ lib.maintainers.khaneliman ];
|
|
|
|
# Manually supplied to nvim-dap config module
|
|
callSetup = false;
|
|
extraConfig = cfg: {
|
|
plugins.dap = {
|
|
enable = true;
|
|
extensionConfigLua = ''
|
|
require("dap-go").setup(${lib.nixvim.toLuaObject cfg.settings})
|
|
'';
|
|
};
|
|
};
|
|
# NOTE: Renames added in https://github.com/nix-community/nixvim/pull/2897 (2025-01-26)
|
|
imports = [ ./deprecations.nix ];
|
|
}
|