tests/plugins/lsp: re-enable omnisharp on darwin

This commit is contained in:
Austin Horstman 2024-08-19 16:17:21 -05:00
parent ec9d299183
commit 366f25598a
No known key found for this signature in database

View file

@ -1,13 +1,10 @@
{ pkgs, ... }:
{
defaults = {
plugins.lsp = {
enable = true;
servers.omnisharp = {
# As of 2024-03-05, omnisharp-roslyn is broken on darwin
# TODO: re-enable this test when fixed
enable = !pkgs.stdenv.isDarwin;
enable = true;
settings = {
enableEditorConfigSupport = true;