mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-29 20:04:28 +02:00
plugins: use mkPackageOption
for iconsPackage
options
This commit is contained in:
parent
c4a54da4a5
commit
2132702a47
11 changed files with 44 additions and 44 deletions
|
@ -88,10 +88,10 @@ in
|
|||
|
||||
package = helpers.mkPluginPackageOption "diffview" pkgs.vimPlugins.diffview-nvim;
|
||||
|
||||
iconsPackage = helpers.mkPackageOption {
|
||||
name = "nvim-web-devicons";
|
||||
default = pkgs.vimPlugins.nvim-web-devicons;
|
||||
};
|
||||
iconsPackage = lib.mkPackageOption pkgs [
|
||||
"vimPlugins"
|
||||
"nvim-web-devicons"
|
||||
] { nullable = true; };
|
||||
|
||||
diffBinaries = mkBool false ''
|
||||
Show diffs for binaries
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue