1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-28 05:01:03 +01:00
nixvim/plugins/nvim-lsp/zls.nix
2022-01-17 19:02:08 +00:00

18 lines
379 B
Nix

{ config, pkgs, lib, ... }:
with lib;
let
cfg = config.programs.nixvim.plugins.lsp.servers.zls;
in
{
options = {
programs.nixvim.plugins.lsp.servers.zls = {
enable = mkEnableOption "Enable zls, for Zig.";
};
};
config = mkIf cfg.enable {
programs.nixvim.extraPackages = [ pkgs.zls ];
programs.nixvim.plugins.lsp.enabledServers = [ "zls" ];
};
}