From 8b26a990ee929eff39a517477120bf4424b7b2b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Madeleine=20Sydney=20=C5=9Alaga?= Date: Sat, 7 Mar 2026 14:36:21 -0700 Subject: [PATCH] chore(sioyek): binds --- modules/home/users/msyds/sioyek.nix | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/modules/home/users/msyds/sioyek.nix b/modules/home/users/msyds/sioyek.nix index 1530d6e..bddd10f 100644 --- a/modules/home/users/msyds/sioyek.nix +++ b/modules/home/users/msyds/sioyek.nix @@ -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" "" ]; + "screen_up_smooth" = [ "u" "" ]; + }; config = { - startup_commands = '' - toggle_dark_mode - ''; + startup_commands = '' + toggle_dark_mode + ''; }; }; };