feat: add multicursors-nvim plugin

multicursors-nvim with hydra dependency and static config.
This commit is contained in:
Joseph Hanson 2025-02-07 20:24:46 -06:00
commit 09695f4fd4
No known key found for this signature in database
11 changed files with 326 additions and 0 deletions

View file

@ -0,0 +1,17 @@
{lib, ...}: let
inherit (lib.types) bool int str;
inherit (lib.nvim.types) mkPluginSetupOption;
inherit (lib.options) mkOption mkEnableOption;
inherit (lib.nvim.binds) mkMappingOption;
in {
options.vim.utility.multicursors = {
enable = mkEnableOption "multicursors.nvim plugin (vscode like multiple cursors)";
setupOpts = mkPluginSetupOption "multicursors" {
DEBUG_MODE = mkOption {
type = bool;
default = false;
};
};
};
}