Created
May 10, 2024 03:31
-
-
Save Victor-Fiamoncini/ef5fb0057b902807aefdf94dabbc4519 to your computer and use it in GitHub Desktop.
Alacritty Settings
This file contains 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
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