Configure alacritty

This commit is contained in:
muon 2024-06-12 15:13:37 +00:00
parent e626f9d97e
commit bd508dc6e9
2 changed files with 40 additions and 8 deletions

View file

@ -2,6 +2,45 @@
options.mods.terminal.emulator.enable = lib.mkEnableOption "enables terminal emulator";
config = lib.mkIf config.mods.terminal.emulator.enable {
programs.alacritty.enable = true;
programs.alacritty = {
enable = true;
settings = {
cursor = {
style.shape = "Beam";
vi_mode_style = "Block";
unfocused_hollow = true;
};
window = {
padding.x = 6;
padding.y = 6;
};
keyboard.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";
}
];
};
};
};
}