mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
Revert "tests/lsp-servers: disable typescript-language-server on darwin"
This reverts commit 98e8fcdded
.
This commit is contained in:
parent
fefb588c7f
commit
898246c943
2 changed files with 4 additions and 8 deletions
|
@ -39,8 +39,6 @@ let
|
||||||
disabled =
|
disabled =
|
||||||
lib.optionals pkgs.stdenv.isDarwin [
|
lib.optionals pkgs.stdenv.isDarwin [
|
||||||
"fsautocomplete"
|
"fsautocomplete"
|
||||||
# typescript-language-server's dependency git-lfs is broken as of 2024-11-03
|
|
||||||
"ts_ls"
|
|
||||||
]
|
]
|
||||||
++ lib.optionals pkgs.stdenv.isAarch64 [
|
++ lib.optionals pkgs.stdenv.isAarch64 [
|
||||||
# Broken
|
# Broken
|
||||||
|
|
|
@ -96,15 +96,14 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
volar-tsls-integration =
|
volar-tsls-integration =
|
||||||
{ config, pkgs, ... }:
|
{ config, ... }:
|
||||||
{
|
{
|
||||||
plugins.lsp = {
|
plugins.lsp = {
|
||||||
enable = true;
|
enable = true;
|
||||||
servers = {
|
servers = {
|
||||||
volar.enable = true;
|
volar.enable = true;
|
||||||
ts_ls = {
|
ts_ls = {
|
||||||
# TODO typescript-language-server's dependency git-lfs is broken as of 2024-11-03
|
enable = true;
|
||||||
enable = !pkgs.stdenv.isDarwin;
|
|
||||||
filetypes = [ "typescript" ];
|
filetypes = [ "typescript" ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -129,14 +128,13 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
tsls-filetypes =
|
tsls-filetypes =
|
||||||
{ config, pkgs, ... }:
|
{ config, ... }:
|
||||||
{
|
{
|
||||||
plugins.lsp = {
|
plugins.lsp = {
|
||||||
enable = true;
|
enable = true;
|
||||||
servers = {
|
servers = {
|
||||||
ts_ls = {
|
ts_ls = {
|
||||||
# TODO typescript-language-server's dependency git-lfs is broken as of 2024-11-03
|
enable = true;
|
||||||
enable = !pkgs.stdenv.isDarwin;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue