Created
December 24, 2025 05:19
-
-
Save kloudsamurai/35fcdc9127cb6452ff254c5192cbfdd8 to your computer and use it in GitHub Desktop.
alacritty.toml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [env] | |
| TERM = "xterm-256color" | |
| [terminal.shell] | |
| program = "/bin/zsh" | |
| args = ["-l"] | |
| [window] | |
| decorations = "Transparent" | |
| dynamic_title = true | |
| opacity = 0.80 | |
| option_as_alt = "Both" | |
| decorations_theme_variant = "Dark" | |
| [window.padding] | |
| x = 10 | |
| y = 30 | |
| [window.class] | |
| general = "Alacritty" | |
| instance = "Alacritty" | |
| [window.position] | |
| x = 0 | |
| y = 0 | |
| [window.dimensions] | |
| columns = 80 | |
| lines = 24 | |
| [scrolling] | |
| history = 2_000 | |
| multiplier = 3 | |
| [font] | |
| size = 18 | |
| normal = { family = "FiraCode Nerd Font Mono", style = "Retina" } | |
| bold = { family = "FiraCode Nerd Font Mono", style = "Bold" } | |
| italic = { family = "FiraCode Nerd Font Mono", style = "Italic" } | |
| bold_italic = { family = "FiraCode Nerd Font Mono", style = "Bold Italic" } | |
| [font.offset] | |
| y = 12 | |
| x = 0 | |
| [font.glyph_offset] | |
| x = 0 | |
| y = 0 | |
| [colors.primary] | |
| background = "#1B162A" | |
| foreground = "#FFFFFF" | |
| [colors.normal] | |
| black = "#333333" | |
| red = "#7C98FF" | |
| green = "#9149FF" | |
| yellow = "#887AFF" | |
| blue = "#7C98FF" | |
| magenta = "#48A3FF" | |
| cyan = "#48D9FF" | |
| white = "#FFFFFF" | |
| [colors.bright] | |
| black = "#222222" | |
| red = "#DA7AFF" | |
| green = "#B07AFF" | |
| yellow = "#5D4AFF" | |
| blue = "#4B6FFF" | |
| magenta = "#7EC2FF" | |
| cyan = "#7AE8FF" | |
| white = "#FFFFFF" | |
| [colors.cursor] | |
| text = "#170D26" | |
| cursor = "#FFFFFF" | |
| [colors.selection] | |
| text = "#170D26" | |
| background = "#FFFFFF" | |
| [colors.search.matches] | |
| foreground = "#170D26" | |
| background = "#ebbf83" | |
| [colors.search.focused_match] | |
| foreground = "#170D26" | |
| background = "#FFB86C" | |
| [colors.hints.start] | |
| foreground = "#170D26" | |
| background = "#FFB86C" | |
| [colors.hints.end] | |
| foreground = "#170D26" | |
| background = "#7AE8FF" | |
| [colors.line_indicator] | |
| foreground = "#FFFFFF" | |
| background = "#170D26" | |
| [bell] | |
| animation = "EaseOutExpo" | |
| duration = 0 | |
| [selection] | |
| semantic_escape_chars = ",│`|:\"' ()[]{}<>\t" | |
| save_to_clipboard = true | |
| [cursor] | |
| blink_interval = 750 | |
| unfocused_hollow = true | |
| [cursor.style] | |
| shape = "Block" | |
| blinking = "On" | |
| [cursor.vi_mode_style] | |
| shape = "Block" | |
| blinking = "On" | |
| [mouse] | |
| hide_when_typing = true | |
| [hints] | |
| alphabet = "jfkdls;ahgurieowpq" | |
| [[keyboard.bindings]] | |
| key = "V" | |
| mods = "Control|Shift" | |
| action = "Paste" | |
| [[keyboard.bindings]] | |
| key = "C" | |
| mods = "Control|Shift" | |
| action = "Copy" | |
| [[keyboard.bindings]] | |
| key = "Insert" | |
| mods = "Shift" | |
| action = "PasteSelection" | |
| [[keyboard.bindings]] | |
| key = "Key0" | |
| mods = "Control" | |
| action = "ResetFontSize" | |
| [[keyboard.bindings]] | |
| key = "Equals" | |
| mods = "Control" | |
| action = "IncreaseFontSize" | |
| [[keyboard.bindings]] | |
| key = "Minus" | |
| mods = "Control" | |
| action = "DecreaseFontSize" | |
| [[keyboard.bindings]] | |
| key = "F11" | |
| mods = "None" | |
| action = "ToggleFullscreen" | |
| [[keyboard.bindings]] | |
| key = "Paste" | |
| mods = "None" | |
| action = "Paste" | |
| [[keyboard.bindings]] | |
| key = "Copy" | |
| mods = "None" | |
| action = "Copy" | |
| [[keyboard.bindings]] | |
| key = "L" | |
| mods = "Control" | |
| action = "ClearLogNotice" | |
| [[keyboard.bindings]] | |
| key = "L" | |
| mods = "Control" | |
| chars = "\\x0c" | |
| [[keyboard.bindings]] | |
| key = "PageUp" | |
| mods = "None" | |
| action = "ScrollPageUp" | |
| mode = "~Alt" | |
| [[keyboard.bindings]] | |
| key = "PageDown" | |
| mods = "None" | |
| action = "ScrollPageDown" | |
| mode = "~Alt" | |
| [[keyboard.bindings]] | |
| key = "Home" | |
| mods = "Shift" | |
| action = "ScrollToTop" | |
| mode = "~Alt" | |
| [[keyboard.bindings]] | |
| key = "End" | |
| mods = "Shift" | |
| action = "ScrollToBottom" | |
| mode = "~Alt" | |
| [debug] | |
| render_timer = false | |
| persistent_logging = false | |
| log_level = "Warn" | |
| print_events = false | |
| [terminal] | |
| [[keyboard.bindings]] | |
| key = "Return" | |
| mods = "Shift" | |
| chars = "\u001b\r" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment