mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
Restrict no nonnegative numbers Co-authored-by: Gaétan Lepage <33058747+GaetanLepage@users.noreply.github.com> chore: include optionsRenamedToSettings in TODO Merge imports Co-authored-by: Gaétan Lepage <33058747+GaetanLepage@users.noreply.github.com>
17 lines
287 B
Nix
17 lines
287 B
Nix
{
|
|
empty = {
|
|
plugins.persistence.enable = true;
|
|
};
|
|
|
|
defaults = {
|
|
plugins.persistence = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
branch = true;
|
|
dir.__raw = ''vim.fn.expand(vim.fn.stdpath("state") .. "/sessions/")'';
|
|
need = 1;
|
|
};
|
|
};
|
|
};
|
|
}
|