Skip to content

Instantly share code, notes, and snippets.

@Victor-Fiamoncini
Created May 10, 2024 03:31
Show Gist options
  • Save Victor-Fiamoncini/ef5fb0057b902807aefdf94dabbc4519 to your computer and use it in GitHub Desktop.
Save Victor-Fiamoncini/ef5fb0057b902807aefdf94dabbc4519 to your computer and use it in GitHub Desktop.
Alacritty Settings
import = [
"~/.config/alacritty/themes/themes/palenight.toml"
]
[window]
decorations = "Full" # Neither borders nor title bar.
startup_mode = "Windowed" # Startup mode, regular windows
[window.padding]
x = 0
y = 0
[font]
size = 10
[font.normal]
family = "JetBrainsMono NF"
style = "Regular"
[font.bold]
family = "JetBrainsMono NF"
style = "Bold"
[[keyboard.bindings]] # Control + V = Paste
action = "Paste"
key = "V"
mods = "Control"
[[keyboard.bindings]] # Control + C = Copy
action = "Copy"
key = "C"
mods = "Control"
[[keyboard.bindings]] # Control + "+" = Increase Font Size
action = "IncreaseFontSize"
key = "NumpadAdd"
mods = "Control"
[[keyboard.bindings]] # Control + N = Create a new instance.
action = "SpawnNewInstance"
key = "N"
mods = "Control"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment