mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
tests/lsp-servers: disable typescript-language-server on darwin
This commit is contained in:
parent
454f328b9a
commit
98e8fcdded
2 changed files with 8 additions and 4 deletions
|
@ -39,6 +39,8 @@ 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,14 +96,15 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
volar-tsls-integration =
|
volar-tsls-integration =
|
||||||
{ config, ... }:
|
{ config, pkgs, ... }:
|
||||||
{
|
{
|
||||||
plugins.lsp = {
|
plugins.lsp = {
|
||||||
enable = true;
|
enable = true;
|
||||||
servers = {
|
servers = {
|
||||||
volar.enable = true;
|
volar.enable = true;
|
||||||
ts_ls = {
|
ts_ls = {
|
||||||
enable = true;
|
# TODO typescript-language-server's dependency git-lfs is broken as of 2024-11-03
|
||||||
|
enable = !pkgs.stdenv.isDarwin;
|
||||||
filetypes = [ "typescript" ];
|
filetypes = [ "typescript" ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -128,13 +129,14 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
tsls-filetypes =
|
tsls-filetypes =
|
||||||
{ config, ... }:
|
{ config, pkgs, ... }:
|
||||||
{
|
{
|
||||||
plugins.lsp = {
|
plugins.lsp = {
|
||||||
enable = true;
|
enable = true;
|
||||||
servers = {
|
servers = {
|
||||||
ts_ls = {
|
ts_ls = {
|
||||||
enable = true;
|
# TODO typescript-language-server's dependency git-lfs is broken as of 2024-11-03
|
||||||
|
enable = !pkgs.stdenv.isDarwin;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue