Added plugin and config for vim-visual-multi

Added plugin and config for https://github.com/mg979/vim-visual-multi
This commit is contained in:
Joseph Hanson 2025-02-04 09:26:09 -06:00
commit a4d2c6171a
No known key found for this signature in database
5 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,7 @@
{lib, ...}: let
inherit (lib.options) mkEnableOption;
in {
options.vim.utility.visual-multi = {
enable = mkEnableOption "visual-multi.nvim plugin (multiple cursors)";
};
}