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