tests/lsp: disable fsautocomplete for non-linux systems

This commit is contained in:
Gaetan Lepage 2023-10-21 10:13:47 +02:00 committed by Gaétan Lepage
parent 8d11162f5f
commit 3c4ac5ba0d

View file

@ -87,7 +87,8 @@
elmls.enable = true; elmls.enable = true;
eslint.enable = true; eslint.enable = true;
elixirls.enable = true; elixirls.enable = true;
fsautocomplete.enable = true; # pkgs.fsautocomplete only supports linux platforms
fsautocomplete.enable = pkgs.stdenv.isLinux;
# As of 2023/10/21, futhark is broken # As of 2023/10/21, futhark is broken
# TODO: test and uncomment if it gets fixed # TODO: test and uncomment if it gets fixed
# futhark-lsp.enable = true; # futhark-lsp.enable = true;