nvf/modules/ui/illuminate/illuminate.nix

8 lines
212 B
Nix
Raw Normal View History

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