nvf/modules/ui/illuminate/illuminate.nix

12 lines
219 B
Nix
Raw Normal View History

2023-06-06 00:05:05 +00:00
{
config,
lib,
...
}: let
inherit (lib) mkEnableOption;
in {
2023-06-06 00:05:05 +00:00
options.vim.ui.illuminate = {
enable = mkEnableOption "vim-illuminate: automatically highlight other uses of the word under the cursor";
};
}