1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 11:36:07 +01:00
nixvim/tests/test-sources/plugins/by-name/modicator/default.nix
saygo-png 79d53a50e2 tests: use __empty and __raw
Signed-off-by: saygo-png <saygo.mail@proton.me>
2025-11-05 21:26:13 +00:00

45 lines
786 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.__raw = "nil";
highlight = "bg";
};
};
};
};
};
example = {
plugins.modicator = {
enable = true;
settings = {
show_warnings = true;
highlights = {
defaults = {
bold = false;
italic = false;
};
};
};
};
};
}