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,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;
};
autosave = {
cwd = true;
last = true;
};
ignore = {
buftypes = {};
dirs = {};
filetypes = [ "gitcommit" "gitrebase" ];
};
ignore = {
buftypes = { };
dirs = { };
filetypes = [ "gitcommit" "gitrebase" ];
};
}