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, ... }:
|
||||
|
||||
{
|
||||
diagnostics = {
|
||||
underline = true;
|
||||
update_in_insert = true;
|
||||
severity_sort = true;
|
||||
|
|
@ -29,5 +28,4 @@
|
|||
"4" = icons.DiagnosticHint;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
# https://github.com/AstroNvim/AstroNvim/blob/v4.7.7/lua/astronvim/plugins/_astrocore.lua#L32-L39
|
||||
{
|
||||
features = {
|
||||
# Enable autopairs at start
|
||||
autopairs = true;
|
||||
|
||||
|
|
@ -21,5 +20,4 @@
|
|||
lines = 10000;
|
||||
size = 1024 * 500;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
# https://github.com/AstroNvim/AstroNvim/blob/v4.7.7/lua/astronvim/plugins/_astrocore.lua#L62-L72
|
||||
{
|
||||
rooter = {
|
||||
enabled = true;
|
||||
autochdir = false;
|
||||
notify = false;
|
||||
|
|
@ -23,8 +22,7 @@
|
|||
];
|
||||
|
||||
ignore = {
|
||||
dirs = {};
|
||||
servers = {};
|
||||
};
|
||||
dirs = { };
|
||||
servers = { };
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,15 +1,13 @@
|
|||
# https://github.com/AstroNvim/AstroNvim/blob/v4.7.7/lua/astronvim/plugins/_astrocore.lua#L73-L80
|
||||
{
|
||||
sessions = {
|
||||
autosave = {
|
||||
cwd = true;
|
||||
last = true;
|
||||
};
|
||||
|
||||
ignore = {
|
||||
buftypes = {};
|
||||
dirs = {};
|
||||
buftypes = { };
|
||||
dirs = { };
|
||||
filetypes = [ "gitcommit" "gitrebase" ];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue