non important commit
This commit is contained in:
parent
b90f68b63e
commit
71e25b29c3
1 changed files with 21 additions and 0 deletions
|
|
@ -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;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue