Created
July 4, 2026 18:16
-
-
Save tuhuynh27/a381b250ae8ef35a3d90c7d99bc4085c to your computer and use it in GitHub Desktop.
Alacritty Config
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
| [font] | |
| size = 14.0 | |
| [window] | |
| decorations = "full" | |
| padding = { x = 12, y = 12 } | |
| opacity = 1.0 | |
| [colors.primary] | |
| background = "#282828" | |
| foreground = "#ebdbb2" | |
| [colors.normal] | |
| black = "#282828" | |
| red = "#cc241d" | |
| green = "#98971a" | |
| yellow = "#d79921" | |
| blue = "#458588" | |
| magenta = "#b16286" | |
| cyan = "#689d6a" | |
| white = "#a89984" | |
| [colors.bright] | |
| black = "#928374" | |
| red = "#fb4934" | |
| green = "#b8bb26" | |
| yellow = "#fabd2f" | |
| blue = "#83a598" | |
| magenta = "#d3869b" | |
| cyan = "#8ec07c" | |
| white = "#ebdbb2" | |
| # Send a distinct Shift+Enter sequence so Claude Code can insert a newline | |
| [[keyboard.bindings]] | |
| key = "Enter" | |
| mods = "Shift" | |
| chars = "\u001B[13;2u" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment