aboutsummaryrefslogtreecommitdiff
path: root/alacritty.toml
diff options
context:
space:
mode:
authorNirmal Kumar R <tildezero@gmail.com>2026-05-31 13:28:36 +0530
committerNirmal Kumar R <tildezero@gmail.com>2026-05-31 13:28:36 +0530
commit0654e4d383b89cceda76547d1250ab38461a7b59 (patch)
tree399de9f87fa8eb54b2691fde00dc6bb99c0bf726 /alacritty.toml
parent934b34bc4ac029b71e36ead9ea27dd8ea516391d (diff)
Add alacritty config
Diffstat (limited to 'alacritty.toml')
-rw-r--r--alacritty.toml51
1 files changed, 51 insertions, 0 deletions
diff --git a/alacritty.toml b/alacritty.toml
new file mode 100644
index 0000000..5b29aad
--- /dev/null
+++ 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