2020-03-13 19:49:18 +01:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
2020-05-29 17:12:17 +02:00
|
|
|
home.packages = with pkgs; [
|
2020-03-13 19:49:18 +01:00
|
|
|
omnisharp-roslyn
|
|
|
|
];
|
|
|
|
|
|
|
|
home.file.".omnisharp/omnisharp.json" = {
|
|
|
|
text = ''
|
|
|
|
{
|
2020-05-22 18:07:43 +02:00
|
|
|
"FormattingOptions": {
|
|
|
|
"EnableEditorConfigSupport": true
|
|
|
|
},
|
2020-03-13 19:49:18 +01:00
|
|
|
"RoslynExtensionsOptions": {
|
|
|
|
"EnableAnalyzersSupport": true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|