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, ... }:
|
{ 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"},
|
||||||
]
|
]
|
||||||
''
|
''
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue