nix-community.nixvim/tests/test-sources/plugins/utils/baleia.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
317 B
Nix
Raw Normal View History

2024-02-14 18:38:55 +00:00
{
empty = {
plugins.baleia.enable = true;
};
example = {
plugins.baleia = {
enable = true;
settings = {
async = true;
colors = "NR_8";
line_starts_at = 1;
log = "INFO";
name = "BaleiaColors";
strip_ansi_codes = false;
};
};
};
}