1
0
Fork 0
mirror of https://github.com/NotAShelf/neovim-flake.git synced 2024-12-27 04:59:47 +01:00
neovim-flake/modules/plugins/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
};
}