mirror of
https://github.com/NotAShelf/nvf.git
synced 2026-04-27 11:55:22 +00:00
18 lines
319 B
Nix
18 lines
319 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (lib.modules) mkIf;
|
|
cfg = config.vim.utility.nvim-biscuits;
|
|
in {
|
|
config = mkIf cfg.enable {
|
|
vim = {
|
|
lazy.plugins.nvim-biscuits = {
|
|
package = "nvim-biscuits";
|
|
setupModule = "nvim-biscuits";
|
|
setupOpts = cfg.setupOpts;
|
|
};
|
|
};
|
|
};
|
|
}
|