10 lines
97 B
Nix
10 lines
97 B
Nix
|
{ pkgs, ... }:
|
||
|
{
|
||
|
plugins = {
|
||
|
|
||
|
# TODO lint
|
||
|
lsp.servers.csharp_ls.enable = true;
|
||
|
};
|
||
|
}
|
||
|
|