mirror of
https://github.com/nix-community/nixvim.git
synced 2025-08-02 00:54:48 +02:00
plugins: remove all uses of lib.nixvim.mkPluginPackageOption
This commit is contained in:
parent
ae3a2c9d10
commit
7409e80bd2
77 changed files with 462 additions and 77 deletions
|
@ -14,7 +14,12 @@ in
|
|||
options.plugins.chadtree = helpers.neovim-plugin.extraOptionsOptions // {
|
||||
enable = mkEnableOption "chadtree";
|
||||
|
||||
package = helpers.mkPluginPackageOption "chadtree" pkgs.vimPlugins.chadtree;
|
||||
package = lib.mkPackageOption pkgs "chadtree" {
|
||||
default = [
|
||||
"vimPlugins"
|
||||
"chadtree"
|
||||
];
|
||||
};
|
||||
|
||||
iconsPackage = lib.mkPackageOption pkgs [
|
||||
"vimPlugins"
|
||||
|
|
|
@ -55,7 +55,12 @@ in
|
|||
// {
|
||||
enable = mkEnableOption "neo-tree";
|
||||
|
||||
package = helpers.mkPluginPackageOption "neo-tree" pkgs.vimPlugins.neo-tree-nvim;
|
||||
package = lib.mkPackageOption pkgs "neo-tree" {
|
||||
default = [
|
||||
"vimPlugins"
|
||||
"neo-tree-nvim"
|
||||
];
|
||||
};
|
||||
|
||||
iconsPackage = lib.mkPackageOption pkgs [
|
||||
"vimPlugins"
|
||||
|
|
|
@ -39,7 +39,12 @@ in
|
|||
options.plugins.nvim-tree = helpers.neovim-plugin.extraOptionsOptions // {
|
||||
enable = mkEnableOption "nvim-tree";
|
||||
|
||||
package = helpers.mkPluginPackageOption "nvim-tree" pkgs.vimPlugins.nvim-tree-lua;
|
||||
package = lib.mkPackageOption pkgs "nvim-tree" {
|
||||
default = [
|
||||
"vimPlugins"
|
||||
"nvim-tree-lua"
|
||||
];
|
||||
};
|
||||
|
||||
iconsPackage = lib.mkPackageOption pkgs [
|
||||
"vimPlugins"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue