fix(plugins/astrocore): wrongly set options
This commit is contained in:
parent
f71226be0f
commit
208ee4fec2
4 changed files with 66 additions and 74 deletions
|
|
@ -2,7 +2,6 @@
|
||||||
{ icons, ... }:
|
{ icons, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
diagnostics = {
|
|
||||||
underline = true;
|
underline = true;
|
||||||
update_in_insert = true;
|
update_in_insert = true;
|
||||||
severity_sort = true;
|
severity_sort = true;
|
||||||
|
|
@ -29,5 +28,4 @@
|
||||||
"4" = icons.DiagnosticHint;
|
"4" = icons.DiagnosticHint;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,5 @@
|
||||||
# https://github.com/AstroNvim/AstroNvim/blob/v4.7.7/lua/astronvim/plugins/_astrocore.lua#L32-L39
|
# https://github.com/AstroNvim/AstroNvim/blob/v4.7.7/lua/astronvim/plugins/_astrocore.lua#L32-L39
|
||||||
{
|
{
|
||||||
features = {
|
|
||||||
# Enable autopairs at start
|
# Enable autopairs at start
|
||||||
autopairs = true;
|
autopairs = true;
|
||||||
|
|
||||||
|
|
@ -21,5 +20,4 @@
|
||||||
lines = 10000;
|
lines = 10000;
|
||||||
size = 1024 * 500;
|
size = 1024 * 500;
|
||||||
};
|
};
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,5 @@
|
||||||
# https://github.com/AstroNvim/AstroNvim/blob/v4.7.7/lua/astronvim/plugins/_astrocore.lua#L62-L72
|
# https://github.com/AstroNvim/AstroNvim/blob/v4.7.7/lua/astronvim/plugins/_astrocore.lua#L62-L72
|
||||||
{
|
{
|
||||||
rooter = {
|
|
||||||
enabled = true;
|
enabled = true;
|
||||||
autochdir = false;
|
autochdir = false;
|
||||||
notify = false;
|
notify = false;
|
||||||
|
|
@ -23,8 +22,7 @@
|
||||||
];
|
];
|
||||||
|
|
||||||
ignore = {
|
ignore = {
|
||||||
dirs = {};
|
dirs = { };
|
||||||
servers = {};
|
servers = { };
|
||||||
};
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,15 +1,13 @@
|
||||||
# https://github.com/AstroNvim/AstroNvim/blob/v4.7.7/lua/astronvim/plugins/_astrocore.lua#L73-L80
|
# https://github.com/AstroNvim/AstroNvim/blob/v4.7.7/lua/astronvim/plugins/_astrocore.lua#L73-L80
|
||||||
{
|
{
|
||||||
sessions = {
|
|
||||||
autosave = {
|
autosave = {
|
||||||
cwd = true;
|
cwd = true;
|
||||||
last = true;
|
last = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
ignore = {
|
ignore = {
|
||||||
buftypes = {};
|
buftypes = { };
|
||||||
dirs = {};
|
dirs = { };
|
||||||
filetypes = [ "gitcommit" "gitrebase" ];
|
filetypes = [ "gitcommit" "gitrebase" ];
|
||||||
};
|
};
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue