mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
36 lines
873 B
Nix
36 lines
873 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
programs.sioyek = {
|
|
enable = true;
|
|
bindings = {
|
|
"move_down" = "j";
|
|
"move_left" = "h";
|
|
"move_right" = "l";
|
|
"move_up" = "k";
|
|
"screen_down" = [ "d" "<C-d>" ];
|
|
"screen_up" = [ "u" "<C-u>" ];
|
|
};
|
|
config = {
|
|
"dark_mode_background_color" = "0.0 0.0 0.0";
|
|
"dark_mode_contrast" = "0.8";
|
|
};
|
|
};
|
|
|
|
test.stubs.sioyek = { };
|
|
|
|
nmt = {
|
|
description = "Sioyek basic setup with sample configuration";
|
|
script = ''
|
|
assertFileExists home-files/.config/sioyek/prefs_user.config
|
|
assertFileContent home-files/.config/sioyek/prefs_user.config ${
|
|
./test_prefs_user.config
|
|
}
|
|
|
|
assertFileExists home-files/.config/sioyek/keys_user.config
|
|
assertFileContent home-files/.config/sioyek/keys_user.config ${
|
|
./test_keys_user.config
|
|
}
|
|
'';
|
|
};
|
|
}
|