mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2025-01-10 23:49:47 +01:00
a26cdd2d25
* flake: add nvim-ufo * ui/nvim-ufo: init * docs: update relase notes
9 lines
237 B
Nix
9 lines
237 B
Nix
{lib, ...}: let
|
|
inherit (lib.options) mkEnableOption;
|
|
inherit (lib.nvim.types) mkPluginSetupOption;
|
|
in {
|
|
options.vim.ui.nvim-ufo = {
|
|
enable = mkEnableOption "nvim-ufo";
|
|
setupOpts = mkPluginSetupOption "nvim-ufo" {};
|
|
};
|
|
}
|