blob: 42b3420619dbfb8ebdc3c858c1d0d54c28d01ab0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
{
flake.modules.homeManager.sioyek =
{ ... }:
{
programs.sioyek = {
enable = true;
config = {
"background_color" = "1.0 1.0 1.0";
"text_highlight_color" = "1.0 0.0 0.0";
};
bindings = {
"move_up" = "k";
"move_down" = "j";
"move_left" = "h";
"move_right" = "l";
"screen_down" = [
"d"
"<c-d>"
];
"screen_up" = [
"u"
"<c-u>"
];
};
};
};
}
|