fastaction: move to vim.ui, remove mappings, enable register_ui_select by default

This commit is contained in:
diniamo 2024-09-19 19:55:57 +02:00
commit 24b4902913
10 changed files with 35 additions and 74 deletions

View file

@ -0,0 +1,9 @@
{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" {};
};
}