mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-11-12 08:25:30 +00:00
7 lines
182 B
Nix
7 lines
182 B
Nix
{lib, ...}: let
|
|
inherit (lib.options) mkEnableOption;
|
|
in {
|
|
options.vim.utility.visual-multi = {
|
|
enable = mkEnableOption "visual-multi.nvim plugin (multiple cursors)";
|
|
};
|
|
}
|