1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-12-12 20:11:08 +01:00
nixvim/tests/test-sources/plugins/by-name/mini-visits/default.nix
Matt Sturgeon 824e048096 tests/fetch-tests: only apply required args
Using `functionArgs` and `intersectAttrs`, apply only the required args
to test module files.
2025-11-24 11:09:51 +00:00

31 lines
583 B
Nix

{ lib }:
{
empty = {
plugins.mini-visits.enable = true;
};
defaults = {
plugins.mini-visits = {
enable = true;
settings = {
list = {
filter = lib.nixvim.mkRaw "nil";
sort = lib.nixvim.mkRaw "nil";
};
silent = false;
store = {
autowrite = true;
normalize = lib.nixvim.mkRaw "nil";
path = lib.nixvim.mkRaw "vim.fn.stdpath('data') .. '/mini-visits-index'";
};
track = {
event = "BufEnter";
delay = 1000;
};
};
};
};
}