nix-community.nixvim/plugins/languages/helm.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
368 B
Nix
Raw Normal View History

2024-02-02 11:39:02 +01:00
{
lib,
helpers,
config,
pkgs,
...
}:
with lib;
let
cfg = config.plugins.helm;
in
{
meta.maintainers = [ maintainers.GaetanLepage ];
options.plugins.helm = {
enable = mkEnableOption "vim-helm";
package = helpers.mkPluginPackageOption "vim-helm" pkgs.vimPlugins.vim-helm;
2024-02-02 11:39:02 +01:00
};
config = mkIf cfg.enable { extraPlugins = [ cfg.package ]; };
}