mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 00:48:58 +02:00
25 lines
348 B
Nix
25 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;
|
||
|
};
|
||
|
};
|
||
|
}
|