Update alacritty conf
This commit is contained in:
parent
cf1018d78d
commit
25179e3fad
1 changed files with 9 additions and 7 deletions
|
@ -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"},
|
||||
]
|
||||
''
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue