fix(plugins/astrocore): wrongly set options
This commit is contained in:
parent
f71226be0f
commit
208ee4fec2
4 changed files with 66 additions and 74 deletions
|
|
@ -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 = { };
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue