Update alacritty conf

This commit is contained in:
Vili Sinervä 2024-12-10 22:32:08 +02:00
parent cf1018d78d
commit 25179e3fad
No known key found for this signature in database
GPG key ID: DF8FEAF54EFAC996

View file

@ -1,17 +1,19 @@
{ config, pkgs, ... }: { config, pkgs, ... }:
pkgs.writeText "alacritty-conf" '' pkgs.writeText "alacritty-conf" ''
[font] [font]
size = 16 size = 13
[cursor] [cursor]
shape = "Beam" style.shape = "Beam"
blinking = "On" style.blinking = "On"
blink_timeout = 0
unfocused_hollow = false
[keyboard] [keyboard]
bindings = [ bindings = [
{key = "-", mods = "Super", action = "DecreaseFontSize"}, {key = "-", mods = "Alt", action = "DecreaseFontSize"},
{key = "+", mods = "Super", action = "IncreaseFontSize"}, {key = "+", mods = "Alt | Shift", action = "IncreaseFontSize"},
{key = "=", mods = "Super", action = "ResetFontSize"}, {key = "=", mods = "Alt", action = "ResetFontSize"},
{key = "Enter", mods = "Super | Shift", action = "SpawnNewInstance"}, {key = "Enter", mods = "Alt | Shift", action = "SpawnNewInstance"},
] ]
'' ''