mini/cursorword: init

This commit is contained in:
raf 2025-04-23 16:02:39 +03:00
commit 8ab559ccfe
Signed by: NotAShelf
GPG key ID: 29D95B64378DB4BF
5 changed files with 51 additions and 0 deletions

View file

@ -0,0 +1,9 @@
{lib, ...}: let
inherit (lib.options) mkEnableOption;
inherit (lib.nvim.types) mkPluginSetupOption;
in {
options.vim.mini.cursorword = {
enable = mkEnableOption "mini.cursorword";
setupOpts = mkPluginSetupOption "mini.cursorword" {};
};
}