mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 00:39:45 +01:00
58 lines
1.1 KiB
Nix
58 lines
1.1 KiB
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
let
|
||
|
|
||
|
cfg = config.programs.zsh.zplug;
|
||
|
|
||
|
pluginModule = types.submodule ({ config, ... }: {
|
||
|
options = {
|
||
|
name = mkOption {
|
||
|
type = types.str;
|
||
|
description = "The name of the plugin.";
|
||
|
};
|
||
|
|
||
|
tags = mkOption {
|
||
|
type = types.listOf types.str;
|
||
|
default = [ ];
|
||
|
description = "The plugin tags.";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
});
|
||
|
|
||
|
in {
|
||
|
options.programs.zsh.zplug = {
|
||
|
enable = mkEnableOption "zplug - a zsh plugin manager";
|
||
|
|
||
|
plugins = mkOption {
|
||
|
default = [ ];
|
||
|
type = types.listOf pluginModule;
|
||
|
description = "List of zplug plugins.";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
config = mkIf cfg.enable {
|
||
|
home.packages = [ pkgs.zplug ];
|
||
|
|
||
|
programs.zsh.initExtraBeforeCompInit = ''
|
||
|
source ${pkgs.zplug}/init.zsh
|
||
|
|
||
|
${optionalString (cfg.plugins != [ ]) ''
|
||
|
${concatStrings (map (plugin: ''
|
||
|
zplug "${plugin.name}"${
|
||
|
optionalString (plugin.tags != [ ]) ''
|
||
|
${concatStrings (map (tag: ", ${tag}") plugin.tags)}
|
||
|
''
|
||
|
}
|
||
|
'') cfg.plugins)}
|
||
|
''}
|
||
|
|
||
|
zplug install
|
||
|
zplug load
|
||
|
'';
|
||
|
|
||
|
};
|
||
|
}
|