diff options
Diffstat (limited to '.config/alacritty.toml')
-rw-r--r-- | .config/alacritty.toml | 83 |
1 files changed, 83 insertions, 0 deletions
diff --git a/.config/alacritty.toml b/.config/alacritty.toml new file mode 100644 index 0000000..3bee4f9 --- /dev/null +++ b/.config/alacritty.toml @@ -0,0 +1,83 @@ +[colors] +draw_bold_text_with_bright_colors = true + +[colors.bright] +black = "0x888888" +blue = "0x79b8ff" +cyan = "0x00ffff" +green = "0x00ff00" +magenta = "0xff00ff" +red = "0xff0000" +white = "0xffffff" +yellow = "0xffff00" + +[colors.cursor] +cursor = "0xffffff" +text = "0xaaaaaa" + +[colors.normal] +black = "0x000000" +blue = "0x2188ff" +cyan = "0x00ffff" +green = "0x00ff00" +magenta = "0xff00ff" +red = "0xff0000" +white = "0xffffff" +yellow = "0xffff00" + +[colors.primary] +background = "0x0a0a0a" +foreground = "0xdddddd" + +[font] +builtin_box_drawing = false +size = 8.0 + +[font.bold] +family = "DejaVuSansM Nerd Font Mono" +style = "Bold" + +[font.bold_italic] +family = "DejaVuSansM Nerd Font Mono" +style = "Bold Oblique" + +[font.italic] +family = "DejaVuSansM Nerd Font Mono" +style = "Oblique" + +[font.normal] +family = "DejaVuSansM Nerd Font Mono" +style = "Regular" + +[hints] +alphabet = "aoeuidhtns" + +[[hints.enabled]] +command = "xdg-open" +hyperlinks = true +post_processing = true +regex = "(mailto|http|https):[^\u0000-\u001F\u007F-<>\"\\s{-}\\^⟨⟩`]+" + +[hints.enabled.binding] +key = "Tab" +mods = "Control|Command" + +[hints.enabled.mouse] +enabled = true +mods = "Command" + +[selection] +semantic_escape_chars = ''' !@#$%^&*(){}[]'",.<>/?=+-\|`~;:''' + +[shell] +args = ["--login"] +program = "/bin/bash" + +[window] +opacity = 0.86 +option_as_alt = "Both" +resize_increments = true + +[window.dimensions] +columns = 80 +lines = 37 |