Files
TheaninovOS/modules/home-manager/programs/nixvim/presets/remaps/half-page-scroll.nix
2024-06-24 19:50:16 +02:00

23 lines
380 B
Nix

{ lib, config, ... }:
let
cfg = config.presets.remaps.half-page-scroll;
in
{
options.presets.remaps.half-page-scroll = {
enable = lib.mkEnableOption "half page scroll";
};
config = lib.mkIf cfg.enable {
keymaps = [
{
key = "<C-d>";
action = "<C-d>zz";
}
{
key = "<C-u>";
action = "<C-u>zz";
}
];
};
}