mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-01 19:11:15 +00:00
12 lines
205 B
Nix
12 lines
205 B
Nix
|
{
|
||
|
config,
|
||
|
lib,
|
||
|
...
|
||
|
}:
|
||
|
with lib;
|
||
|
with builtins; {
|
||
|
options.vim.ui.illuminate = {
|
||
|
enable = mkEnableOption "vim-illuminate: automatically highlight other uses of the word under the cursor";
|
||
|
};
|
||
|
}
|