mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-27 19:18:57 +02:00
tests/lsp/omnisharp: disable on darwin because the LS is broken
This commit is contained in:
parent
6b56ed98e2
commit
1cda3f6df5
2 changed files with 7 additions and 3 deletions
|
@ -131,7 +131,9 @@
|
||||||
# As of 2024-01-04, ols is broken on darwin
|
# As of 2024-01-04, ols is broken on darwin
|
||||||
# TODO: re-enable this test when fixed
|
# TODO: re-enable this test when fixed
|
||||||
&& !pkgs.stdenv.isDarwin;
|
&& !pkgs.stdenv.isDarwin;
|
||||||
omnisharp.enable = true;
|
# As of 2024-03-05, omnisharp-roslyn is broken on darwin
|
||||||
|
# TODO: re-enable this test when fixed
|
||||||
|
omnisharp.enable = !pkgs.stdenv.isDarwin;
|
||||||
perlpls.enable = true;
|
perlpls.enable = true;
|
||||||
pest_ls.enable = true;
|
pest_ls.enable = true;
|
||||||
prismals.enable = true;
|
prismals.enable = true;
|
||||||
|
|
|
@ -1,10 +1,12 @@
|
||||||
{
|
{pkgs, ...}: {
|
||||||
defaults = {
|
defaults = {
|
||||||
plugins.lsp = {
|
plugins.lsp = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
servers.omnisharp = {
|
servers.omnisharp = {
|
||||||
enable = true;
|
# As of 2024-03-05, omnisharp-roslyn is broken on darwin
|
||||||
|
# TODO: re-enable this test when fixed
|
||||||
|
enable = !pkgs.stdenv.isDarwin;
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
enableEditorConfigSupport = true;
|
enableEditorConfigSupport = true;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue