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,8 @@
{lib, ...}: let
#inherit (lib) types;
inherit (lib.options) mkEnableOption;
in {
options.vim.hydra = {
enable = mkEnableOption "Creating custom submodes and menus [nvimtools/hydra.nvim]";
};
}