alacritty.toml (776B)
1 [bell] 2 animation = "EaseOutExpo" 3 duration = 0 4 5 [colors] 6 draw_bold_text_with_bright_colors = true 7 8 [cursor] 9 style = "Block" 10 unfocused_hollow = false 11 12 [font] 13 # Normal font style 14 normal = { family = "JetBrains Mono", style = "Regular" } 15 16 # Bold font style 17 bold = { style = "Bold" } 18 19 # Italic font style 20 italic = { style = "Italic" } 21 22 # Bold Italic font style 23 bold_italic = { style = "Bold Italic" } 24 25 # Font size in points 26 size = 11.25 27 28 [mouse] 29 hide_when_typing = true 30 31 [[mouse.bindings]] 32 action = "PasteSelection" 33 mouse = "Middle" 34 35 [scrolling] 36 history = 10000 37 multiplier = 3 38 39 [selection] 40 save_to_clipboard = true 41 semantic_escape_chars = ",│`|:\"' ()[]{}<>" 42 43 [window] 44 decorations = "full" 45 dynamic_padding = false 46 dynamic_title = true 47 opacity = 1.0 48 49 [window.padding] 50 x = 2 51 y = 2