2025-05-29 15:39:42 +03:00
|
|
|
{ pkgs, ... }:
|
2025-06-01 21:04:26 +03:00
|
|
|
pkgs.writeText "alacritty-conf" ''
|
|
|
|
[font]
|
|
|
|
size = 13
|
2025-05-29 15:39:42 +03:00
|
|
|
|
2025-06-01 21:04:26 +03:00
|
|
|
[cursor]
|
|
|
|
style.shape = "Beam"
|
|
|
|
style.blinking = "On"
|
|
|
|
blink_timeout = 0
|
|
|
|
unfocused_hollow = false
|
|
|
|
|
|
|
|
[keyboard]
|
|
|
|
bindings = [
|
|
|
|
{key = "+", mods = "Control | Shift", action = "ResetFontSize"},
|
|
|
|
{key = "Enter", mods = "Alt | Shift", action = "SpawnNewInstance"},
|
|
|
|
]
|
2025-05-29 15:39:42 +03:00
|
|
|
''
|