mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
26 lines
433 B
Nix
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;
|
|
};
|
|
};
|
|
};
|
|
}
|