mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-04-11 07:08:37 +00:00
12 lines
305 B
Nix
12 lines
305 B
Nix
{lib, ...}: let
|
|
inherit (lib.options) mkEnableOption;
|
|
inherit (lib.nvim.types) mkPluginSetupOption;
|
|
in {
|
|
options.vim.utility.snacks-nvim = {
|
|
enable = mkEnableOption ''
|
|
collection of QoL plugins for Neovim [snacks-nvim]
|
|
'';
|
|
|
|
setupOpts = mkPluginSetupOption "snacks-nvim" {};
|
|
};
|
|
}
|