mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-09-06 18:31:35 +00:00
7 lines
139 B
Nix
7 lines
139 B
Nix
{lib, ...}: let
|
|
inherit (lib.options) mkEnableOption;
|
|
in {
|
|
options.vim.mini.extra = {
|
|
enable = mkEnableOption "mini.extra";
|
|
};
|
|
}
|