mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-08 11:36:07 +01:00
31 lines
588 B
Nix
31 lines
588 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;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|