nix/part/Setting.nix

63 lines
846 B
Nix
Raw Normal View History

2024-04-06 03:03:58 +03:00
{ ... }: {
tmux = {
resize.step = {
2024-04-29 02:03:44 +03:00
vertical = 1;
horizontal = 1;
2024-04-06 03:03:58 +03:00
};
status = {
2024-04-29 02:03:44 +03:00
interval = 2;
length = 50;
2024-04-06 03:03:58 +03:00
battery.threshold = {
2024-04-29 02:03:44 +03:00
high = 60;
medium = 40;
low = 20;
show = 40;
2024-04-06 03:03:58 +03:00
};
volume.threshold = {
2024-04-29 02:03:44 +03:00
high = 80;
medium = 40;
low = 10;
show = 100;
2024-04-06 03:03:58 +03:00
};
};
};
nvim = {
editor = {
2024-04-29 02:03:44 +03:00
relativenumber = true;
indent.default = 2;
2024-04-06 03:03:58 +03:00
};
resize.step = {
2024-04-29 02:03:44 +03:00
vertical = 2;
horizontal = 4;
2024-04-06 03:03:58 +03:00
};
};
sway = {
resize.step = {
2024-04-29 02:03:44 +03:00
vertical = 10;
horizontal = 10;
2024-04-06 03:03:58 +03:00
};
window = {
2024-04-29 02:03:44 +03:00
gap = 10;
opacity.inactive = 0.85;
2024-04-06 03:03:58 +03:00
};
};
foot = {
font = {
2024-04-29 02:03:44 +03:00
step = 1;
2024-04-29 02:07:57 +03:00
dpi = true;
forceWhite = false;
2024-04-06 03:03:58 +03:00
};
};
2024-04-29 02:03:44 +03:00
top.refresh.ms = 2000;
popup.timeout.ms = 5000;
2024-04-06 03:03:58 +03:00
2024-04-29 02:03:44 +03:00
brightness.step = 5;
volume.step = 5;
music.step = 10;
2024-04-29 02:07:57 +03:00
keyd.timeout = 150;
2024-04-06 03:03:58 +03:00
}