mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
plugins/lsp: add ansible language server
This commit is contained in:
parent
741dd36395
commit
2f9224ab0b
2 changed files with 7 additions and 0 deletions
|
@ -9,6 +9,12 @@ with lib; let
|
|||
lspHelpers = import ../helpers.nix {inherit lib config pkgs;};
|
||||
|
||||
servers = [
|
||||
{
|
||||
name = "ansiblels";
|
||||
description = "Enable ansiblels, for Ansible";
|
||||
package = pkgs.ansible-language-server;
|
||||
cmd = cfg: ["${cfg.package}/bin/ansible-language-server" "--stdio"];
|
||||
}
|
||||
{
|
||||
name = "astro";
|
||||
description = "Enable astrols, for Astro";
|
||||
|
|
|
@ -75,6 +75,7 @@
|
|||
enable = true;
|
||||
|
||||
servers = {
|
||||
ansiblels.enable = true;
|
||||
astro.enable = true;
|
||||
bashls.enable = true;
|
||||
biome.enable = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue