Last active
June 11, 2024 02:39
-
-
Save sean-kang/03e6ab265542db7805d50c297ede3404 to your computer and use it in GitHub Desktop.
~/.config/alacritty/alacritty.toml for MacOS
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
########### | |
# GENERAL # | |
########### | |
# Import additional configuration files | |
import = [ | |
"~/.config/alacritty/themes/themes/catppuccin_mocha.toml" | |
] | |
########## | |
# WINDOW # | |
########## | |
[window] | |
# Option as Alt (macOS only) | |
option_as_alt = "OnlyLeft" # Default: "None" | |
######## | |
# FONT # | |
######## | |
[font] | |
# Normal font style | |
normal = { family = "Hack Nerd Font", style = "Regular" } # Default for Linux/BSD: "monospace", Regular | |
# Font size in points | |
size = 15 # Default: 11.25 | |
############ | |
# KEYBOARD # | |
############ | |
[keyboard] | |
# Define keyboard bindings here | |
bindings = [ | |
{ key = "Key6", mods = "Control", chars = "\u001e" } | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment