mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 00:48:58 +02:00
15 lines
276 B
Nix
15 lines
276 B
Nix
{
|
|
empty = {
|
|
plugins.lastplace.enable = true;
|
|
};
|
|
|
|
defaults = {
|
|
plugins.lastplace = {
|
|
enable = true;
|
|
|
|
ignoreBuftype = ["quickfix" "nofix" "help"];
|
|
ignoreFiletype = ["gitcommit" "gitrebase" "svn" "hgcommit"];
|
|
openFolds = true;
|
|
};
|
|
};
|
|
}
|