From 98abdb6aef501a95818311d30b1ba61c17bc5801 Mon Sep 17 00:00:00 2001 From: Oliver Ladner Date: Fri, 16 Aug 2024 10:22:55 +0200 Subject: [PATCH] alacritty: 0 to reset font size --- .config/alacritty/alacritty.toml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.config/alacritty/alacritty.toml b/.config/alacritty/alacritty.toml index 45ca0bb..4a39bae 100644 --- a/.config/alacritty/alacritty.toml +++ b/.config/alacritty/alacritty.toml @@ -12,13 +12,7 @@ # selection (Ctrl v). You can also toggle between them while the selection is # still active. -import = [ - #"~/.config/alacritty/tokyonight_day.toml", - #"~/.config/alacritty/tokyonight_moon.toml", - #"~/.config/alacritty/tokyonight_night.toml", - "~/.config/alacritty/tokyonight_storm.toml", - #"~/.config/alacritty/catppuccin-macchiato.toml", -] +import = ["~/.config/alacritty/tokyonight_day.toml"] [font] normal = { family = "JetBrainsMono Nerd Font", style = "Thin" } @@ -54,6 +48,7 @@ bindings = [ # Required to make Ctrl+/ work on macOS (used in Telescope) { chars = "\u001F", key = "Slash", mods = "Control" }, { key = "Key0", mods = "Command", action = "ResetFontSize" }, + { key = "0", mods = "Command", action = "ResetFontSize" }, { key = "Plus", mods = "Command", action = "IncreaseFontSize" }, { key = "Minus", mods = "Command", action = "DecreaseFontSize" }, { key = "PageUp", mods = "Shift", action = "ScrollPageUp" },