aboutsummaryrefslogtreecommitdiff
path: root/modules/programs/sioyek.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/programs/sioyek.nix')
-rw-r--r--modules/programs/sioyek.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/modules/programs/sioyek.nix b/modules/programs/sioyek.nix
new file mode 100644
index 0000000..42b3420
--- /dev/null
+++ b/modules/programs/sioyek.nix
@@ -0,0 +1,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>"
+ ];
+ };
+ };
+ };
+}