Created
March 4, 2025 20:00
-
-
Save skullvalanche/7401f65c8ee97a3ab033729238efb7c4 to your computer and use it in GitHub Desktop.
alacritty config
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
| # https://alacritty.org/config-alacritty.html | |
| [window] | |
| padding.x = 10 | |
| padding.y = 10 | |
| dimensions = { columns = 120, lines = 30 } | |
| option_as_alt = "Both" | |
| [font] | |
| normal.family = "MesloLGS NF" | |
| bold.family = "MesloLGS NF" | |
| italic.family = "MesloLGS NF" | |
| bold_italic.family = "MesloLGS NF" | |
| size = 14.0 | |
| [selection] | |
| save_to_clipboard = true | |
| [keyboard] | |
| bindings = [ | |
| # navigate word-at-a-time via option + arrow keys | |
| { key = "Right", mods = "Alt", chars = "\u001BF" }, | |
| { key = "Left", mods = "Alt", chars = "\u001BB" }, | |
| ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment