non important commit

This commit is contained in:
maxstrb 2026-03-13 15:51:17 +01:00
parent b90f68b63e
commit 71e25b29c3

View file

@ -12,6 +12,27 @@
enableManpages = true; enableManpages = true;
settings.vim = { settings.vim = {
extraPackages = [pkgs.netcoredbg];
luaConfigRC.netcoredbg = ''
local dap = require("dap")
dap.adapters.coreclr = {
type = "executable",
command = "${pkgs.netcoredbg}/bin/netcoredbg",
args = {"--interpreter=vscode"}
}
dap.configurations.cs = {
{
type = "coreclr",
name = "Launch",
request = "launch",
program = function()
return vim.fn.input("Path to dll: ", vim.fn.getcwd() .. "/bin/Debug/", "file")
end,
},
}
'';
theme = { theme = {
enable = true; enable = true;
transparent = true; transparent = true;