Created
December 18, 2023 18:04
-
-
Save henriwasd/1ce8369d2e89d35046d1b45ef4139039 to your computer and use it in GitHub Desktop.
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
[keyboard] | |
bindings = [ | |
{key = "V", mods = "Control|Shift", action = "Paste"}, | |
{key = "C",mods = "Control|Shift",action = "Copy"}, | |
{key = "Q",mods = "Control",action = "Quit"}, | |
{key = "T",mods = "Control",action = "SpawnNewInstance"}, | |
{key = "L",mods = "Control",action = "ClearLogNotice"}, | |
{key = "PageUp",mods = "Shift",action = "ScrollPageUp"}, | |
{key = "PageDown",mods = "Shift",action = "ScrollPageDown"}, | |
{key = "Home",mods = "Shift",action = "ScrollToTop"}, | |
{key = "End",mods = "Shift",action = "ScrollToBottom"}, | |
{key = "N",mods = "Shift|Control",action = "CreateNewWindow"}, | |
] | |
[font] | |
normal = { family = "FiraCode Nerd Font" } | |
size = 8 | |
[window] | |
opacity = 0.8 | |
[scrolling] | |
history = 10000 | |
multiplier = 3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment