plugins/nvim-lsp: add sourcekit language server

This commit is contained in:
Gaetan Lepage 2023-04-28 09:28:24 +02:00 committed by Gaétan Lepage
parent 8d7488a931
commit 079b0c30cd
2 changed files with 6 additions and 0 deletions

View file

@ -301,6 +301,11 @@ with lib; let
settingsOptions = import ./rust-analyzer-config.nix lib;
settings = cfg: {rust-analyzer = cfg;};
}
{
name = "sourcekit";
description = "Enable the sourcekit language server, for Swift and C/C++/Objective-C";
package = pkgs.sourcekit-lsp;
}
{
name = "tailwindcss";
description = "Enable tailwindcss language server, for tailwindcss";

View file

@ -73,6 +73,7 @@
rnix-lsp.enable = true;
ruff-lsp.enable = true;
rust-analyzer.enable = true;
sourcekit.enable = true;
tailwindcss.enable = true;
terraformls.enable = true;
texlab.enable = true;