{ config, lib, pkgs, ... }: { programs.alacritty = { enable = true; settings = { cursor = { style.shape = "Beam"; vi_mode_style = "Block"; unfocused_hollow = true; }; window = { padding.x = 6; padding.y = 6; }; key_bindings = [ { key = "U"; mods = "Control"; mode = "Vi|~Search"; action = "ScrollHalfPageUp"; } { key = "D"; mods = "Control"; mode = "Vi|~Search"; action = "ScrollHalfPageDown"; } { key = "U"; mods = "Control"; mode = "~Alt"; action = "ScrollHalfPageUp"; } { key = "D"; mods = "Control"; mode = "~Alt"; action = "ScrollHalfPageDown"; } ]; }; }; }