colorschemes/modus: add new configuration option

The `hide_inactive_statusline` option is available in newer versions of
the theme.
This commit is contained in:
Nate Smith 2024-09-10 11:59:42 -04:00 committed by GaetanLepage
parent d0c0821245
commit fc7e9b2927
2 changed files with 6 additions and 0 deletions

View file

@ -46,6 +46,10 @@ lib.nixvim.neovim-plugin.mkNeovimPlugin {
Disable setting the background color. Disable setting the background color.
''; '';
hide_inactive_statusline = defaultNullOpts.mkBool false ''
Hide statuslines in inactive windows.
'';
dim_inactive = defaultNullOpts.mkBool false '' dim_inactive = defaultNullOpts.mkBool false ''
Dims inactive windows. Dims inactive windows.
''; '';
@ -93,6 +97,7 @@ lib.nixvim.neovim-plugin.mkNeovimPlugin {
variant = "default"; variant = "default";
transparent = false; transparent = false;
dim_inactive = false; dim_inactive = false;
hide_inactive_statusline = false;
styles = { styles = {
comments.italic = true; comments.italic = true;
keywords.italic = true; keywords.italic = true;

View file

@ -12,6 +12,7 @@
variant = "default"; variant = "default";
transparent = false; transparent = false;
dim_inactive = false; dim_inactive = false;
hide_inactive_statusline = false;
styles = { styles = {
comments.italic = true; comments.italic = true;
keywords.italic = true; keywords.italic = true;