fix(plugins/astrocore): wrongly set options

This commit is contained in:
Nicolas Goudry 2024-06-07 22:53:23 +02:00
parent f71226be0f
commit 208ee4fec2
No known key found for this signature in database
GPG key ID: 5FC434D9FFD1DF44
4 changed files with 66 additions and 74 deletions

View file

@ -1,30 +1,28 @@
# https://github.com/AstroNvim/AstroNvim/blob/v4.7.7/lua/astronvim/plugins/_astrocore.lua#L62-L72
{
rooter = {
enabled = true;
autochdir = false;
notify = false;
scope = "global";
enabled = true;
autochdir = false;
notify = false;
scope = "global";
detector = [
"lsp"
[
".git"
"_darcs"
".hg"
".bzr"
".svn"
]
[
"lua"
"MakeFile"
"package.json"
]
];
detector = [
"lsp"
[
".git"
"_darcs"
".hg"
".bzr"
".svn"
]
[
"lua"
"MakeFile"
"package.json"
]
];
ignore = {
dirs = {};
servers = {};
};
ignore = {
dirs = { };
servers = { };
};
}