diff --git a/program-config-files/alacritty.nix b/program-config-files/alacritty.nix index 5c77e67..9dcf016 100644 --- a/program-config-files/alacritty.nix +++ b/program-config-files/alacritty.nix @@ -1,17 +1,19 @@ { config, pkgs, ... }: pkgs.writeText "alacritty-conf" '' [font] - size = 16 + size = 13 [cursor] - shape = "Beam" - blinking = "On" + style.shape = "Beam" + style.blinking = "On" + blink_timeout = 0 + unfocused_hollow = false [keyboard] bindings = [ - {key = "-", mods = "Super", action = "DecreaseFontSize"}, - {key = "+", mods = "Super", action = "IncreaseFontSize"}, - {key = "=", mods = "Super", action = "ResetFontSize"}, - {key = "Enter", mods = "Super | Shift", action = "SpawnNewInstance"}, + {key = "-", mods = "Alt", action = "DecreaseFontSize"}, + {key = "+", mods = "Alt | Shift", action = "IncreaseFontSize"}, + {key = "=", mods = "Alt", action = "ResetFontSize"}, + {key = "Enter", mods = "Alt | Shift", action = "SpawnNewInstance"}, ] ''