dev: move defaults inside submodules

This commit is contained in:
raf 2023-07-30 16:46:14 +03:00
parent bb76a26c1b
commit 745088159c
No known key found for this signature in database
GPG key ID: 02D1DD3FA08B6B29

View file

@ -149,12 +149,7 @@ with builtins; {
Update the focused file on `BufEnter`, un-collapses the folders recursively Update the focused file on `BufEnter`, un-collapses the folders recursively
until it finds the file. until it finds the file.
''; '';
default = {};
default = {
enable = false;
updateRoot = false;
ignoreList = [];
};
type = types.submodule { type = types.submodule {
options = { options = {
@ -175,6 +170,7 @@ with builtins; {
`update_focused_file.enable` are `true`. `update_focused_file.enable` are `true`.
''; '';
type = with types; listOf str; type = with types; listOf str;
default = [];
}; };
}; };
}; };