You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently it is possible to set a random theme at 2 points:
when the plugin is loaded (when the style.fix = false) by using :colorsheme starry;
manually by calling lua require('starry.util').load();
However, once util.load() is called, it is no longer possible to change the to another random because the configuration is updated and the value of style.fixalways becomestrue.
It is also not possible to set the theme to random one multiple times using :colorsheme starry.
The request would be:
calling :colorsheme starry and lua require('starry.util').load() multiple times would select a random theme on every call;
the style.fix config option is not updated as it leads to confusion when inspecting it (it turns into true even though it was configured with false);
The text was updated successfully, but these errors were encountered:
dnagir
added a commit
to dnagir/dotfiles
that referenced
this issue
Dec 29, 2023
Currently it is possible to set a random theme at 2 points:
style.fix = false
) by using:colorsheme starry
;lua require('starry.util').load()
;However, once
util.load()
is called, it is no longer possible to change the to another random because the configuration is updated and the value ofstyle.fix
always becomestrue
.It is also not possible to set the theme to random one multiple times using
:colorsheme starry
.The request would be:
:colorsheme starry
andlua require('starry.util').load()
multiple times would select a random theme on every call;style.fix
config option is not updated as it leads to confusion when inspecting it (it turns intotrue
even though it was configured withfalse
);The text was updated successfully, but these errors were encountered: