nix-community.nixvim/tests/test-sources/plugins/by-name/modicator/default.nix
2025-04-10 17:26:00 +10:00

45 lines
779 B
Nix

{
empty = {
plugins.modicator.enable = true;
};
default = {
plugins.modicator = {
enable = true;
settings = {
show_warnings = false;
highlights = {
defaults = {
bold = false;
italic = false;
};
use_cursorline_background = false;
};
integration = {
lualine = {
enabled = true;
mode_section = null;
highlight = "bg";
};
};
};
};
};
example = {
plugins.modicator = {
enable = true;
settings = {
show_warnings = true;
highlights = {
defaults = {
bold = false;
italic = false;
};
};
};
};
};
}