Last active
September 13, 2025 06:15
-
-
Save pyratin/7f35cc5c2fc81e047e6590cd7e03afa1 to your computer and use it in GitHub Desktop.
.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
[window] | |
dynamic_padding = true | |
dimensions = { columns = 96, lines = 54 } | |
[env] | |
TERM = "xterm-256color" | |
[selection] | |
save_to_clipboard = true | |
[font] | |
size = 12 | |
[font.normal] | |
family = "JetBrainsMono" | |
style = "Regular" | |
[font.bold] | |
family = "JetBrainsMono" | |
style = "Bold" | |
[font.italic] | |
family = "JetBrainsMono" | |
style = "Italic" | |
[font.bold_italic] | |
family = "JetBrainsMono" | |
style = "Bold Italic" | |
[[keyboard.bindings]] | |
action = "Paste" | |
key = "V" | |
mods = "Control|Shift" | |
[[keyboard.bindings]] | |
action = "Copy" | |
key = "C" | |
mods = "Control|Shift" | |
[[keyboard.bindings]] | |
action = "ResetFontSize" | |
key = "Key0" | |
mods = "Control" | |
[[keyboard.bindings]] | |
action = "IncreaseFontSize" | |
key = "Equals" | |
mods = "Control" | |
[[keyboard.bindings]] | |
action = "DecreaseFontSize" | |
key = "Minus" | |
mods = "Control" | |
[[keyboard.bindings]] | |
action = "ScrollPageUp" | |
key = "PageUp" | |
mode = "~Alt" | |
mods = "Shift" | |
[[keyboard.bindings]] | |
action = "ScrollPageDown" | |
key = "PageDown" | |
mode = "~Alt" | |
mods = "Shift" | |
[[keyboard.bindings]] | |
action = "ScrollToTop" | |
key = "Home" | |
mode = "~Alt" | |
mods = "Shift" | |
[[keyboard.bindings]] | |
action = "ScrollToBottom" | |
key = "End" | |
mode = "~Alt" | |
mods = "Shift" | |
[[keyboard.bindings]] | |
key = "T" | |
mods = "Super|Shift" | |
action = "SpawnNewInstance" | |
[scrolling] | |
history = 10000 | |
[general] | |
live_config_reload = true | |
import = [ | |
"~/.config/alacritty/themes/themes/tokyo_night.toml" | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment