mirror of
https://git.sr.ht/~neverness/ultima
synced 2025-01-09 18:33:52 +00:00
18 lines
343 B
Nix
18 lines
343 B
Nix
{ config, ... }: {
|
|
programs.joshuto.theme = with config.lib.stylix.colors; {
|
|
lscolors_enabled = true;
|
|
tabs.styles = {
|
|
active = {
|
|
bg = "${base00}";
|
|
fg = "${base0E}";
|
|
bold = true;
|
|
};
|
|
inactive = {
|
|
bg = "${base00}";
|
|
fg = "${base03}";
|
|
bold = false;
|
|
};
|
|
};
|
|
};
|
|
}
|