mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 00:48:58 +02:00
20 lines
317 B
Nix
20 lines
317 B
Nix
{
|
|
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;
|
|
};
|
|
};
|
|
};
|
|
}
|