mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2025-12-20 18:40:03 +01:00
10 lines
255 B
Nix
10 lines
255 B
Nix
|
|
{lib, ...}: let
|
||
|
|
inherit (lib.options) mkEnableOption;
|
||
|
|
inherit (lib.nvim.types) mkPluginSetupOption;
|
||
|
|
in {
|
||
|
|
options.vim.mini.cursorword = {
|
||
|
|
enable = mkEnableOption "mini.cursorword";
|
||
|
|
setupOpts = mkPluginSetupOption "mini.cursorword" {};
|
||
|
|
};
|
||
|
|
}
|