nix-community.nixvim/tests/test-sources/plugins/utils/lastplace.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
348 B
Nix
Raw Normal View History

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