Skip to content

Instantly share code, notes, and snippets.

@phenomen
Last active February 23, 2025 05:48
Show Gist options
  • Save phenomen/921e900eea1ed6d3766d465bb0398337 to your computer and use it in GitHub Desktop.
Save phenomen/921e900eea1ed6d3766d465bb0398337 to your computer and use it in GitHub Desktop.
My Alacritty Config (Windows)
# 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