Squash merge new-codeactions into custom

This commit is contained in:
diniamo 2024-09-19 20:11:06 +02:00
commit 052582c30a
11 changed files with 67 additions and 61 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" {};
};
}