mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-24 17:58:38 +02:00
plugins/lsp: add biome language server (#698)
* plugins/lsp: add biome language server * fix:typo caught by codespell * remove unnecessary package attribute Co-authored-by: Gaétan Lepage <33058747+GaetanLepage@users.noreply.github.com> --------- Co-authored-by: Gaétan Lepage <33058747+GaetanLepage@users.noreply.github.com>
This commit is contained in:
parent
a742bd1fc4
commit
06ebef8da8
2 changed files with 6 additions and 1 deletions
|
@ -20,6 +20,10 @@ with lib; let
|
|||
description = "Enable bashls, for bash.";
|
||||
package = pkgs.nodePackages.bash-language-server;
|
||||
}
|
||||
{
|
||||
name = "biome";
|
||||
description = "Enable Biome, Toolchain of the Web";
|
||||
}
|
||||
{
|
||||
name = "ccls";
|
||||
description = "Enable ccls, for C/C++.";
|
||||
|
@ -253,7 +257,7 @@ with lib; let
|
|||
name = "lua-ls";
|
||||
description = "Enable lua LS, for lua";
|
||||
# Use the old name of the lua LS if the user is on a stable branch of nixpkgs
|
||||
# Rename occured here: https://github.com/NixOS/nixpkgs/pull/215057
|
||||
# Rename occurred here: https://github.com/NixOS/nixpkgs/pull/215057
|
||||
package =
|
||||
if (hasAttr "lua-language-server" pkgs)
|
||||
then pkgs.lua-language-server
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue