plugins/lsp: add ccls language server

This commit is contained in:
Gaetan Lepage 2023-06-15 11:20:36 +02:00 committed by Gaétan Lepage
parent b809855174
commit 24b145ff35
4 changed files with 331 additions and 1 deletions

View file

@ -19,6 +19,10 @@ with lib; let
description = "Enable bashls, for bash.";
package = pkgs.nodePackages.bash-language-server;
}
{
name = "ccls";
description = "Enable ccls, for C/C++.";
}
{
name = "clangd";
description = "Enable clangd LSP, for C/C++.";
@ -382,5 +386,8 @@ with lib; let
in {
imports =
lib.lists.map lspHelpers.mkLsp servers
++ [./pylsp.nix];
++ [
./ccls.nix
./pylsp.nix
];
}