Last active
February 23, 2025 05:48
-
-
Save phenomen/921e900eea1ed6d3766d465bb0398337 to your computer and use it in GitHub Desktop.
My Alacritty Config (Windows)
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
# Alacritty Windows Config | |
# %APPDATA%\alacritty\alacritty.toml | |
[terminal] | |
# cmd is faster than powershell and requires less resources | |
shell = "cmd" | |
[window] | |
padding = { x = 6, y = 2} | |
[font] | |
# JetBrains Mono | |
# https://www.jetbrains.com/lp/mono/ | |
normal.family = "JetBrains Mono" | |
bold.family = "JetBrains Mono" | |
italic.family = "JetBrains Mono" | |
bold_italic.family = "JetBrains Mono" | |
size = 12.0 | |
[colors] | |
# Monokai Pro | |
# https://github.com/alacritty/alacritty-theme/blob/master/themes/monokai_pro.toml | |
[colors.primary] | |
background = "#2D2A2E" | |
foreground = "#fff1f3" | |
# Normal colors | |
[colors.normal] | |
black = "#2c2525" | |
red = "#fd6883" | |
green = "#adda78" | |
yellow = "#f9cc6c" | |
blue = "#f38d70" | |
magenta = "#a8a9eb" | |
cyan = "#85dacc" | |
white = "#fff1f3" | |
# Bright colors | |
[colors.bright] | |
black = "#72696a" | |
red = "#fd6883" | |
green = "#adda78" | |
yellow = "#f9cc6c" | |
blue = "#f38d70" | |
magenta = "#a8a9eb" | |
cyan = "#85dacc" | |
white = "#fff1f3" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment