mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-15 09:35:12 -05:00
29 lines
655 B
Nix
Executable file
29 lines
655 B
Nix
Executable file
{ colourHelpers, ... }:
|
|
{
|
|
layout = {
|
|
default-column-width = {
|
|
proportion = 1.;
|
|
};
|
|
preset-column-widths = [
|
|
{ proportion = 1. / 3.; }
|
|
{ proportion = 1. / 2.; }
|
|
{ proportion = 2. / 3.; }
|
|
{ proportion = 1.; }
|
|
];
|
|
border = {
|
|
enable = true;
|
|
width = 2;
|
|
active.color = colourHelpers.makeColour colourHelpers.el.base0E;
|
|
inactive.color = colourHelpers.makeColour colourHelpers.el.base02;
|
|
};
|
|
gaps = 5;
|
|
shadow = {
|
|
enable = true;
|
|
color = colourHelpers.el.base11;
|
|
draw-behind-window = true;
|
|
offset.x = 0;
|
|
offset.y = 0;
|
|
spread = 3;
|
|
};
|
|
};
|
|
}
|