mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-15 17:45:12 -05:00
30 lines
655 B
Nix
30 lines
655 B
Nix
![]() |
{ 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;
|
||
|
};
|
||
|
};
|
||
|
}
|