Last active
July 6, 2025 06:35
-
-
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.bold] | |
family = "DejaVuSansM Nerd Font Mono" | |
style = "Bold" | |
[font.bold_italic] | |
family = "DejaVuSansM Nerd Font Mono" | |
style = "Bold Italic" | |
[font.italic] | |
family = "DejaVuSansM Nerd Font Mono" | |
style = "Italic" | |
[font.normal] | |
family = "DejaVuSansM Nerd Font Mono" | |
style = "Regular" | |
[[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 | |
# ----------------------------------------------------------------------------- | |
# TokyoNight Alacritty Colors | |
# Theme: Tokyo Night | |
# Upstream: https://github.com/folke/tokyonight.nvim/raw/main/extras/alacritty/tokyonight_night.toml | |
# ----------------------------------------------------------------------------- | |
# Default colors | |
[colors.primary] | |
background = '#1a1b26' | |
foreground = '#c0caf5' | |
#[colors.cursor] | |
#cursor = '#c0caf5' | |
#text = '#1a1b26' | |
# Normal colors | |
[colors.normal] | |
black = '#15161e' | |
red = '#f7768e' | |
green = '#9ece6a' | |
yellow = '#e0af68' | |
blue = '#7aa2f7' | |
magenta = '#bb9af7' | |
cyan = '#7dcfff' | |
white = '#a9b1d6' | |
# Bright colors | |
[colors.bright] | |
black = '#414868' | |
red = '#ff899d' | |
green = '#9fe044' | |
yellow = '#faba4a' | |
blue = '#8db0ff' | |
magenta = '#c7a9ff' | |
cyan = '#a4daff' | |
white = '#c0caf5' | |
# Indexed Colors | |
[[colors.indexed_colors]] | |
index = 16 | |
color = '#ff9e64' | |
[[colors.indexed_colors]] | |
index = 17 | |
color = '#db4b4b' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment