Skip to content

Commit

Permalink
Revert "tests/lsp-servers: disable typescript-language-server on darwin"
Browse files Browse the repository at this point in the history
This reverts commit 98e8fcd.
  • Loading branch information
GaetanLepage committed Nov 6, 2024
1 parent fefb588 commit 898246c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
2 changes: 0 additions & 2 deletions tests/lsp-servers.nix
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,6 @@ let
disabled =
lib.optionals pkgs.stdenv.isDarwin [
"fsautocomplete"
# typescript-language-server's dependency git-lfs is broken as of 2024-11-03
"ts_ls"
]
++ lib.optionals pkgs.stdenv.isAarch64 [
# Broken
Expand Down
10 changes: 4 additions & 6 deletions tests/test-sources/plugins/lsp/_lsp.nix
Original file line number Diff line number Diff line change
Expand Up @@ -96,15 +96,14 @@
};

volar-tsls-integration =
{ config, pkgs, ... }:
{ config, ... }:
{
plugins.lsp = {
enable = true;
servers = {
volar.enable = true;
ts_ls = {
# TODO typescript-language-server's dependency git-lfs is broken as of 2024-11-03
enable = !pkgs.stdenv.isDarwin;
enable = true;
filetypes = [ "typescript" ];
};
};
Expand All @@ -129,14 +128,13 @@
};

tsls-filetypes =
{ config, pkgs, ... }:
{ config, ... }:
{
plugins.lsp = {
enable = true;
servers = {
ts_ls = {
# TODO typescript-language-server's dependency git-lfs is broken as of 2024-11-03
enable = !pkgs.stdenv.isDarwin;
enable = true;
};
};
};
Expand Down

0 comments on commit 898246c

Please sign in to comment.