1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-25 11:49:40 +01:00
nixvim/tests/test-sources/plugins/by-name/lastplace/default.nix
2024-09-09 11:50:38 +01: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;
};
};
}