From 08d742f9b986f2a77e4a52d8db38f3e253568ae9 Mon Sep 17 00:00:00 2001 From: Alexander Hess Date: Thu, 13 Aug 2026 17:24:00 +0200 Subject: [PATCH] Add configuration for `alacritty` --- .config/alacritty/alacritty.toml | 89 ++++++++++++++++++++++++++++++++ 1 file changed, 89 insertions(+) create mode 100644 .config/alacritty/alacritty.toml diff --git a/.config/alacritty/alacritty.toml b/.config/alacritty/alacritty.toml new file mode 100644 index 0000000..b9b1fc2 --- /dev/null +++ b/.config/alacritty/alacritty.toml @@ -0,0 +1,89 @@ +[colors] + +draw_bold_text_with_bright_colors = true + + + +[cursor] + +blink_interval = 500 +thickness = 0.1 +unfocused_hollow = true + + +[cursor.style] + +blinking = "On" +shape = "Block" + + + +[font] + +size = 12.0 + + +[font.bold] + +family = "FiraCode Nerd Font" +style = "Bold" + + +[font.bold_italic] + +family = "FiraCode Nerd Font" +style = "Semibold" + + +[font.italic] + +family = "FiraCode Nerd Font" +style = "Light" + + +[font.normal] + +family = "FiraCode Nerd Font" +style = "Regular" + + +[font.offset] + +x = 0 +y = 0 + + + +[[keyboard.bindings]] + +action = "SpawnNewInstance" +key = "Return" +mods = "Control|Shift" + + + +[scrolling] + +history = 99999 +multiplier = 10 + + + +[terminal.shell] + +args = ["-l"] +program = "/usr/bin/zsh" + + + +[window] + +decorations = "none" +dynamic_padding = true +opacity = 0.95 + + +[window.padding] + +x = 10 +y = 10