chore(sioyek): binds
Some checks failed
build / build-sydpc (push) Has been cancelled
build / build-fruitbook (push) Has been cancelled
build / build-deertopia (push) Has been cancelled

This commit is contained in:
2026-03-07 14:36:21 -07:00
parent c92c4d37b7
commit 8b26a990ee

View File

@@ -9,10 +9,16 @@ in {
config = lib.mkIf cfg.enable {
programs.sioyek = {
enable = true;
bindings = {
"move_down_smooth" = "j";
"move_up_smooth" = "k";
"screen_down_smooth" = [ "d" "<C-d>" ];
"screen_up_smooth" = [ "u" "<C-u>" ];
};
config = {
startup_commands = ''
toggle_dark_mode
'';
startup_commands = ''
toggle_dark_mode
'';
};
};
};