mirror of
https://github.com/nix-community/home-manager
synced 2024-11-27 05:29:46 +01:00
neovim: add extraConfig and plugins options
This commit is contained in:
parent
5d7eabb93f
commit
c142e5264d
1 changed files with 58 additions and 1 deletions
|
@ -24,6 +24,14 @@ let
|
||||||
merge = mergeOneOption;
|
merge = mergeOneOption;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
moduleConfigure =
|
||||||
|
optionalAttrs (cfg.extraConfig != "") {
|
||||||
|
customRC = cfg.extraConfig;
|
||||||
|
}
|
||||||
|
// optionalAttrs (cfg.plugins != []) {
|
||||||
|
packages.home-manager.start = cfg.plugins;
|
||||||
|
};
|
||||||
|
|
||||||
in
|
in
|
||||||
|
|
||||||
{
|
{
|
||||||
|
@ -137,19 +145,68 @@ in
|
||||||
description = ''
|
description = ''
|
||||||
Generate your init file from your list of plugins and custom commands,
|
Generate your init file from your list of plugins and custom commands,
|
||||||
and loads it from the store via <command>nvim -u /nix/store/hash-vimrc</command>
|
and loads it from the store via <command>nvim -u /nix/store/hash-vimrc</command>
|
||||||
|
|
||||||
|
</para><para>
|
||||||
|
|
||||||
|
This option is deprecated. Please use the options <varname>extraConfig</varname>
|
||||||
|
and <varname>plugins</varname> which are mutually exclusive with this option.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
extraConfig = mkOption {
|
||||||
|
type = types.lines;
|
||||||
|
default = "";
|
||||||
|
example = ''
|
||||||
|
set nocompatible
|
||||||
|
set nobackup
|
||||||
|
'';
|
||||||
|
description = ''
|
||||||
|
Custom vimrc lines.
|
||||||
|
|
||||||
|
</para><para>
|
||||||
|
|
||||||
|
This option is mutually exclusive with <varname>configure</varname>.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
plugins = mkOption {
|
||||||
|
type = with types; listOf package;
|
||||||
|
default = [ ];
|
||||||
|
example = literalExample "[ pkgs.vimPlugins.yankring ]";
|
||||||
|
description = ''
|
||||||
|
List of vim plugins to install.
|
||||||
|
|
||||||
|
</para><para>
|
||||||
|
|
||||||
|
This option is mutually exclusive with <varname>configure</varname>.
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
|
assertions = [
|
||||||
|
{
|
||||||
|
assertion = cfg.configure == { } || moduleConfigure == { };
|
||||||
|
message = "The programs.neovim option configure is mutually exclusive"
|
||||||
|
+ " with extraConfig and plugins.";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
|
warnings = optional (cfg.configure != {}) ''
|
||||||
|
The programs.neovim.configure option is deprecated. Please use
|
||||||
|
extraConfig and package option.
|
||||||
|
'';
|
||||||
|
|
||||||
home.packages = [ cfg.finalPackage ];
|
home.packages = [ cfg.finalPackage ];
|
||||||
|
|
||||||
programs.neovim.finalPackage = pkgs.wrapNeovim cfg.package {
|
programs.neovim.finalPackage = pkgs.wrapNeovim cfg.package {
|
||||||
inherit (cfg)
|
inherit (cfg)
|
||||||
extraPython3Packages withPython3
|
extraPython3Packages withPython3
|
||||||
extraPythonPackages withPython
|
extraPythonPackages withPython
|
||||||
withNodeJs withRuby viAlias vimAlias configure;
|
withNodeJs withRuby viAlias vimAlias;
|
||||||
|
|
||||||
|
configure = cfg.configure // moduleConfigure;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue