15 lines
237 B
Nix
15 lines
237 B
Nix
{
|
|
colors = {
|
|
primary = "00aaff";
|
|
secondary = "ff00aa";
|
|
};
|
|
core = {
|
|
directory = {
|
|
foreground = "primary";
|
|
};
|
|
"executable-file" = {
|
|
foreground = "secondary";
|
|
"font-style" = "bold";
|
|
};
|
|
};
|
|
}
|