fix(neovim): add netcoredbg to scope instead of absolute path

I don't know why I can't do absolute path.
This commit is contained in:
Alexandre Cavalheiro 2024-12-19 00:21:50 -03:00
parent 85aac1442c
commit bf3d76d86d
Signed by: wizardlink
GPG key ID: A5767B54367CFBDF
2 changed files with 2 additions and 1 deletions

View file

@ -66,6 +66,7 @@ in
# C#
csharp-ls
csharpier
netcoredbg
# HTML/CSS/JSON
emmet-ls

View file

@ -41,7 +41,7 @@ pkgs:
-- @type DapAdapter
dap.adapters.coreclr = {
type = "executable",
command = "${pkgs.netcoredbg}/bin/netcoredbg",
command = "netcoredbg",
args = {"--interpreter=vscode"}
}