neovim-flake/modules/ui/illuminate/illuminate.nix

8 lines
212 B
Nix
Raw Normal View History

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