nix-community.nixvim/tests/test-sources/plugins/by-name/lastplace/default.nix
2025-02-02 09:08:57 -06:00

26 lines
433 B
Nix

{
empty = {
plugins.lastplace.enable = true;
};
defaults = {
plugins.lastplace = {
enable = true;
settings = {
lastplace_ignore_buftype = [
"quickfix"
"nofix"
"help"
];
lastplace_ignore_filetype = [
"gitcommit"
"gitrebase"
"svn"
"hgcommit"
];
lastplace_open_folds = true;
};
};
};
}