Fixes alacritty eating C-/

This commit is contained in:
willemml 2023-11-18 04:16:52 -08:00
parent 43fa3b333c
commit 7910b9cc99
Signed by: willemml
GPG key ID: C3DE5DF6198DACBD

View file

@ -15,9 +15,23 @@
bash.enableCompletion = true;
alacritty.enable = true;
alacritty.settings.font.normal.style = lib.mkForce "Book";
alacritty.settings.window.decorations = "None";
alacritty = {
enable = true;
settings = {
font.normal.style = lib.mkForce "Book";
window = {
decorations = "None";
option_as_alt = "Both";
};
key_bindings = [
{
key = "Slash";
mods = "Control";
chars = "\\x1b[47;5u";
}
];
};
};
direnv = {
enable = true;