Skip to content

Instantly share code, notes, and snippets.

@MayukhSobo
Last active April 3, 2025 18:16
Show Gist options
  • Save MayukhSobo/43d324473e518aac7df4ba8c6e37a6e4 to your computer and use it in GitHub Desktop.
Save MayukhSobo/43d324473e518aac7df4ba8c6e37a6e4 to your computer and use it in GitHub Desktop.
Alacritty toml file
general.import = [
# "~/.config/alacritty/catppuccin-latte.toml"
# "~/.config/alacritty/catppuccin-mocha.toml"
# "~/.config/alacritty/themes/themes/dracula.toml"
"~/.config/alacritty/tokyo-night-alacritty-theme/tokyo-night.toml"
]
terminal.shell="/opt/homebrew/bin/fish"
[env]
TERM = "xterm-256color"
[font]
size = 12.0
[font.bold]
family = "0xProto Nerd Font Mono"
style = "Bold"
[font.bold_italic]
family = "0xProto Nerd Font Mono"
style = "Bold Italic"
[font.italic]
family = "0xProto Nerd Font Mono"
style = "Italic"
[font.normal]
family = "0xProto Nerd Font Mono"
style = "Regular"
[font.offset]
x = 0
y = 1
[[keyboard.bindings]]
action = "Paste"
key = "V"
mods = "Control|Shift"
[[keyboard.bindings]]
action = "Copy"
key = "C"
mods = "Control|Shift"
[[keyboard.bindings]]
action = "PasteSelection"
key = "Insert"
mods = "Shift"
[[keyboard.bindings]]
action = "ResetFontSize"
key = "Key0"
mods = "Control"
[[keyboard.bindings]]
action = "IncreaseFontSize"
key = "Equals"
mods = "Control"
[[keyboard.bindings]]
action = "IncreaseFontSize"
key = "Plus"
mods = "Control"
[[keyboard.bindings]]
action = "DecreaseFontSize"
key = "Minus"
mods = "Control"
[[keyboard.bindings]]
action = "ToggleFullscreen"
key = "F11"
mods = "None"
[[keyboard.bindings]]
action = "Paste"
key = "Paste"
mods = "None"
[[keyboard.bindings]]
action = "Copy"
key = "Copy"
mods = "None"
[[keyboard.bindings]]
action = "ClearLogNotice"
key = "L"
mods = "Control"
[[keyboard.bindings]]
chars = "\f"
key = "L"
mods = "Control"
[[keyboard.bindings]]
action = "ScrollPageUp"
key = "PageUp"
mode = "~Alt"
mods = "None"
[[keyboard.bindings]]
action = "ScrollPageDown"
key = "PageDown"
mode = "~Alt"
mods = "None"
[[keyboard.bindings]]
action = "ScrollToTop"
key = "Home"
mode = "~Alt"
mods = "Shift"
[[keyboard.bindings]]
action = "ScrollToBottom"
key = "End"
mode = "~Alt"
mods = "Shift"
[scrolling]
history = 5000
[window]
dynamic_padding = true
opacity = 1.0
title = "Alacritty"
[window.class]
general = "Alacritty"
instance = "Alacritty"
[window.padding]
x = 6
y = 6
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment