nixos-conf/program-config-files/alacritty.nix

20 lines
478 B
Nix
Raw Normal View History

2024-12-10 20:59:08 +02:00
{ config, pkgs, ... }:
pkgs.writeText "alacritty-conf" ''
[font]
2024-12-10 22:32:08 +02:00
size = 13
2024-12-10 20:59:08 +02:00
[cursor]
2024-12-10 22:32:08 +02:00
style.shape = "Beam"
style.blinking = "On"
blink_timeout = 0
unfocused_hollow = false
2024-12-10 20:59:08 +02:00
[keyboard]
bindings = [
2024-12-10 22:32:08 +02:00
{key = "-", mods = "Alt", action = "DecreaseFontSize"},
{key = "=", mods = "Alt", action = "IncreaseFontSize"},
{key = "+", mods = "Alt | Shift", action = "ResetFontSize"},
2024-12-10 22:32:08 +02:00
{key = "Enter", mods = "Alt | Shift", action = "SpawnNewInstance"},
2024-12-10 20:59:08 +02:00
]
''