mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-09-05 18:01:32 +00:00

Improve the grammar of the `vim.utility.nvim-biscuits.enable` option to read better in documentation. Co-authored-by: raf <raf@notashelf.dev>
10 lines
295 B
Nix
10 lines
295 B
Nix
{lib, ...}: let
|
|
inherit (lib.options) mkEnableOption;
|
|
inherit (lib.nvim.types) mkPluginSetupOption;
|
|
in {
|
|
options.vim.utility.nvim-biscuits = {
|
|
enable = mkEnableOption "a Neovim port of Assorted Biscuits [nvim-biscuits]";
|
|
|
|
setupOpts = mkPluginSetupOption "nvim-biscuits" {};
|
|
};
|
|
}
|