mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-02 19:41:15 +00:00
10 lines
278 B
Nix
10 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" {};
|
||
|
};
|
||
|
}
|