nixos-config/home/editors/omnisharp.nix

21 lines
347 B
Nix
Raw Normal View History

{ config, pkgs, ... }:
{
home.packages = with pkgs; [
omnisharp-roslyn
];
home.file.".omnisharp/omnisharp.json" = {
text = ''
{
"FormattingOptions": {
"EnableEditorConfigSupport": true
},
"RoslynExtensionsOptions": {
"EnableAnalyzersSupport": true
}
}
'';
};
}