nix-community.nixvim/tests/test-sources/plugins/utils/lastplace.nix
2024-05-05 22:00:40 +02:00

24 lines
348 B
Nix

{
empty = {
plugins.lastplace.enable = true;
};
defaults = {
plugins.lastplace = {
enable = true;
ignoreBuftype = [
"quickfix"
"nofix"
"help"
];
ignoreFiletype = [
"gitcommit"
"gitrebase"
"svn"
"hgcommit"
];
openFolds = true;
};
};
}