diff options
author | Aspen Smith <root@gws.fyi> | 2024-02-01T21·06-0500 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2024-02-01T21·11+0000 |
commit | a73adfe7e44ecf161db2d103ad535d138a4a1272 (patch) | |
tree | d8fad9b3fe48a604be6539ed0d687cab2771ddaa /users | |
parent | 8caa097ba84f57515513d86621826556f2374fad (diff) |
chore(grfn/home): Update alacritty config for deprecated keys r/7464
Change-Id: Ibd22fc94c7e833cabbc158aeb43f1958226ab5d5 Reviewed-on: https://cl.tvl.fyi/c/depot/+/10730 Autosubmit: aspen <root@gws.fyi> Tested-by: BuildkiteCI Reviewed-by: aspen <root@gws.fyi>
Diffstat (limited to 'users')
-rw-r--r-- | users/grfn/system/home/modules/alacritty.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/users/grfn/system/home/modules/alacritty.nix b/users/grfn/system/home/modules/alacritty.nix index 67d6638a31f8..561cab4d79cb 100644 --- a/users/grfn/system/home/modules/alacritty.nix +++ b/users/grfn/system/home/modules/alacritty.nix @@ -7,9 +7,7 @@ font.size = 6; font.normal.family = "Meslo LGSDZ Nerd Font"; - draw_bold_text_with_bright_colors = false; - - key_bindings = [ + keyboard.bindings = [ { key = "Escape"; mods = "Control"; @@ -18,6 +16,8 @@ ]; colors = with import ../common/solarized.nix; rec { + draw_bold_text_with_bright_colors = false; + # Default colors primary = { background = base3; |