mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-10 09:14:31 +02:00
plugins/lsp: add ccls language server
This commit is contained in:
parent
b809855174
commit
24b145ff35
4 changed files with 331 additions and 1 deletions
|
@ -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
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue