mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-02-24 20:38:47 +00:00
9 lines
278 B
Nix
9 lines
278 B
Nix
{lib, ...}: let
|
|
inherit (lib.options) mkEnableOption;
|
|
inherit (lib.nvim.types) mkPluginSetupOption;
|
|
in {
|
|
options.vim.ui.fastaction = {
|
|
enable = mkEnableOption "overriding vim.ui.select with fastaction.nvim";
|
|
setupOpts = mkPluginSetupOption "fastaction" {};
|
|
};
|
|
}
|