fix(alacritty): use new config format

This commit is contained in:
Michael Thomas 2024-06-03 17:56:16 -04:00
parent 6f61595b35
commit 82479daa4c

View File

@ -4,6 +4,7 @@
settings = { settings = {
window = { window = {
decorations = "Buttonless"; decorations = "Buttonless";
option_as_alt = "OnlyLeft";
}; };
font = { font = {
size = 14; size = 14;
@ -16,11 +17,11 @@
italic.style = "Extended Italic"; italic.style = "Extended Italic";
bold_italic.style = "Extended Bold Italic"; bold_italic.style = "Extended Bold Italic";
}; };
key_bindings = [ keyboard.bindings = [
{ {
key = "Slash"; key = "Slash";
mods = "Control"; mods = "Control";
chars = "\\x1f"; chars = "\\u001F";
} }
]; ];
}; };