Skip to content

Instantly share code, notes, and snippets.

@AntonC9018
Created March 3, 2024 20:44
Show Gist options
  • Save AntonC9018/c73bc3c15f952a13256bc81947124418 to your computer and use it in GitHub Desktop.
Save AntonC9018/c73bc3c15f952a13256bc81947124418 to your computer and use it in GitHub Desktop.
Alacritty Windows 10 config
# C:\Users\Name\AppData\Roaming\alacritty\alacritty.toml
[window]
dynamic_padding = false
startup_mode = "Windowed"
opacity = 1
[window.dimensions]
columns = 100
lines = 85
[window.padding]
x = 0
y = 0
[scrolling]
history = 50000
multiplier = 3
[font]
size = 14
[font.normal]
family = "SauceCodePro Nerd Font"
[[keyboard.bindings]]
key = "V"
mods = "Control"
action = "Paste"
[[keyboard.bindings]]
key = "C"
mods = "Control"
action = "Copy"
[[keyboard.bindings]]
key = "T"
mods = "Control"
action = "SpawnNewInstance"
[[keyboard.bindings]]
key = "Back"
mods = "Control"
chars = "\b"
[[keyboard.bindings]]
key = "Space"
mods = "Control"
chars = "\u0000"
[mouse]
hide_when_typing = true
[selection]
semantic_escape_chars = ",│`|:\"' ()[]{}<>"
save_to_clipboard = false
[[mouse.bindings]]
mouse = "Middle"
action = "PasteSelection"
[cursor]
unfocused_hollow = true
[cursor.style]
shape = "Block"
blinking = "Never"
[debug]
render_timer = false
persistent_logging = false
log_level = "OFF"
print_events = false
[shell]
program = "cmd"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment