45 lines
620 B
Nix
45 lines
620 B
Nix
{
|
|
window = {
|
|
padding = {
|
|
x = 5;
|
|
y = 5;
|
|
};
|
|
|
|
decorations = "none";
|
|
|
|
dynamic_title = true;
|
|
|
|
gtk_theme_variant = "light";
|
|
};
|
|
|
|
scrolling = {
|
|
history = 10000;
|
|
|
|
multiplier = 3;
|
|
};
|
|
|
|
font =
|
|
let
|
|
family = "Fira Code";
|
|
in
|
|
{
|
|
normal = {
|
|
inherit family;
|
|
style = "Regular";
|
|
};
|
|
bold = {
|
|
inherit family;
|
|
style = "Bold";
|
|
};
|
|
italic = {
|
|
inherit family;
|
|
style = "Italic";
|
|
};
|
|
bold_italic = {
|
|
inherit family;
|
|
style = "Bold Italic";
|
|
};
|
|
|
|
size = 11.0;
|
|
};
|
|
}
|