mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-01-20 08:52:23 +00:00
20 lines
357 B
Nix
20 lines
357 B
Nix
|
{
|
||
|
config,
|
||
|
lib,
|
||
|
...
|
||
|
}: let
|
||
|
inherit (lib.modules) mkIf;
|
||
|
inherit (lib.nvim.dag) entryAnywhere;
|
||
|
inherit (lib.nvim.lua) toLuaObject;
|
||
|
|
||
|
cfg = config.vim.mini.clue;
|
||
|
in {
|
||
|
vim = mkIf cfg.enable {
|
||
|
startPlugins = ["mini-clue"];
|
||
|
|
||
|
pluginRC.mini-clue = entryAnywhere ''
|
||
|
require("mini.clue").setup(${toLuaObject cfg.setupOpts})
|
||
|
'';
|
||
|
};
|
||
|
}
|