Created
October 28, 2025 07:31
-
-
Save tumf/39c304e467585493b617b4ef1e66bb08 to your computer and use it in GitHub Desktop.
My Alacritty Setting ~/.config/alacritty/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
| [[keyboard.bindings]] | |
| action = "ToggleMaximized" | |
| key = "Return" | |
| mods = "Control" | |
| [[keyboard.bindings]] | |
| action = "SpawnNewInstance" | |
| key = "N" | |
| mods = "Command" | |
| [[keyboard.bindings]] | |
| action = "ToggleFullscreen" | |
| key = "F" | |
| mods = "Command" | |
| [[keyboard.bindings]] | |
| action = "CreateNewTab" | |
| key = "T" | |
| mods = "Control|Shift" | |
| [[keyboard.bindings]] | |
| chars = "\u001Bb" | |
| key = "Left" | |
| mods = "Alt" | |
| [[keyboard.bindings]] | |
| chars = "\u001Bf" | |
| key = "Right" | |
| mods = "Alt" | |
| [colors.normal] | |
| black = "#15161e" | |
| blue = "#7aa2f7" | |
| cyan = "#7dcfff" | |
| green = "#9ece6a" | |
| magenta = "#bb9af7" | |
| red = "#f7768e" | |
| white = "#a9b1d6" | |
| yellow = "#e0af68" | |
| [colors.primary] | |
| background = "#1a1b26" | |
| foreground = "#c0caf5" | |
| [cursor] | |
| style = "Beam" | |
| unfocused_hollow = true | |
| [font] | |
| size = 13.0 | |
| [font.bold] | |
| family = "JetBrainsMono Nerd Font" | |
| [font.italic] | |
| family = "JetBrainsMono Nerd Font" | |
| [font.normal] | |
| family = "JetBrainsMono Nerd Font" | |
| [font.offset] | |
| x = 0 | |
| y = 1 | |
| [scrolling] | |
| history = 10000 | |
| multiplier = 3 | |
| [selection] | |
| save_to_clipboard = true | |
| [window] | |
| decorations = "full" | |
| dynamic_title = true | |
| opacity = 0.9 | |
| startup_mode = "Windowed" | |
| [keyboard] | |
| [env] | |
| LANG = "en_US.UTF-8" | |
| LC_ALL = "en_US.UTF-8" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment