dotfiles

dotfile of sort
git clone git://git.nirm.al/dotfiles
Log | Files | Refs | README | LICENSE

commit 96111432741c79bb4df76fd4e8d0463be174ad3e
parent 3689b77b843c5a1c64e37be4d8a902969b9d13e0
Author: Nirmal Kumar R <tildezero@gmail.com>
Date:   Sun, 14 Apr 2024 19:34:54 +0530

Add alacritty config

Diffstat:
Aalacritty.toml | 51+++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 51 insertions(+), 0 deletions(-)

diff --git a/alacritty.toml b/alacritty.toml @@ -0,0 +1,51 @@ +[bell] +animation = "EaseOutExpo" +duration = 0 + +[colors] +draw_bold_text_with_bright_colors = true + +[cursor] +style = "Block" +unfocused_hollow = false + +[font] +# Normal font style +normal = { family = "JetBrains Mono", style = "Regular" } + +# Bold font style +bold = { style = "Bold" } + +# Italic font style +italic = { style = "Italic" } + +# Bold Italic font style +bold_italic = { style = "Bold Italic" } + +# Font size in points +size = 11.25 + +[mouse] +hide_when_typing = true + +[[mouse.bindings]] +action = "PasteSelection" +mouse = "Middle" + +[scrolling] +history = 10000 +multiplier = 3 + +[selection] +save_to_clipboard = true +semantic_escape_chars = ",│`|:\"' ()[]{}<>" + +[window] +decorations = "full" +dynamic_padding = false +dynamic_title = true +opacity = 1.0 + +[window.padding] +x = 2 +y = 2