From 6e4aff1fbfd84cd885a5820073c1ef4c9783d323 Mon Sep 17 00:00:00 2001 From: serxoz Date: Thu, 25 Apr 2024 12:20:17 +0200 Subject: [PATCH] alacritty config file --- alacritty/alacritty.toml | 77 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 alacritty/alacritty.toml diff --git a/alacritty/alacritty.toml b/alacritty/alacritty.toml new file mode 100644 index 0000000..41ade3b --- /dev/null +++ b/alacritty/alacritty.toml @@ -0,0 +1,77 @@ +dynamic_title = true +live_config_reload = true +render_timer = false +tabspaces = 4 +"window.opacity" = 0.965 + +[bell] +animation = "EaseOutExpo" +duration = 0 + +[colors] +draw_bold_text_with_bright_colors = true + +[colors.bright] +black = "0x585858" +blue = "0x7cafc2" +cyan = "0x1ABB9B" +green = "0x8D8F8D" +magenta = "0xba8baf" +red = "0xab4642" +white = "0xf8f8f8" +yellow = "0xf7ca88" + +[colors.normal] +black = "0x222D31" +blue = "0x7cafc2" +cyan = "0x1ABB9B" +green = "0x7E807E" +magenta = "0xba8baf" +red = "0xab4642" +white = "0xd8d8d8" +yellow = "0xf7ca88" + +[colors.primary] +background = "0x222D31" +foreground = "0xd8d8d8" + +[cursor] +style = "Block" +unfocused_hollow = true + +[env] +TERM = "xterm-256color" + +[mouse] +hide_when_typing = false + +[[mouse.bindings]] +action = "PasteSelection" +mouse = "Middle" + +[mouse.double_click] +threshold = 300 + +[mouse.triple_click] +threshold = 300 + +[scrolling] +auto_scroll = true +faux_multiplier = 100 +history = 10000 +multiplier = 100 + +[selection] +save_to_clipboard = false +semantic_escape_chars = ",│`|:\"' ()[]{}<>" + +[window] +decorations = "full" + +[window.dimensions] +columns = 0 +lines = 0 + +[window.padding] +x = 2 +y = 2