mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-09-06 10:21:31 +00:00
21 lines
400 B
Nix
21 lines
400 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (lib.modules) mkIf;
|
|
inherit (lib.nvim.lua) toLuaObject;
|
|
inherit (lib.nvim.dag) entryAnywhere;
|
|
|
|
cfg = config.vim.binds.hardtime-nvim;
|
|
in {
|
|
config = mkIf cfg.enable {
|
|
vim = {
|
|
startPlugins = ["hardtime-nvim"];
|
|
|
|
pluginRC.hardtime = entryAnywhere ''
|
|
require("hardtime").setup (${toLuaObject cfg.setupOpts})
|
|
'';
|
|
};
|
|
};
|
|
}
|