mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-02 03:21:14 +00:00
18 lines
255 B
Nix
18 lines
255 B
Nix
|
{
|
||
|
config,
|
||
|
lib,
|
||
|
...
|
||
|
}:
|
||
|
with lib;
|
||
|
with builtins; let
|
||
|
cfg = config.vim.ui.illuminate;
|
||
|
in {
|
||
|
config = mkIf cfg.enable {
|
||
|
vim.startPlugins = ["vim-illuminate"];
|
||
|
|
||
|
vim.luaConfigRC.vim-illuminate =
|
||
|
nvim.dag.entryAnywhere ''
|
||
|
'';
|
||
|
};
|
||
|
}
|