Last active
September 22, 2024 10:13
-
-
Save kashifulhaque/885d10a7cb95a2bdad1260dedba16f03 to your computer and use it in GitHub Desktop.
Alacritty config (Windows + WSL)
This file contains 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
[shell] | |
program = "wsl" | |
args = [ "~" ] | |
[font] | |
size = 12 | |
[font.normal] | |
family = "CodeNewRoman Nerd Font" | |
style = "Regular" | |
[window.dimensions] | |
columns = 140 | |
lines = 50 | |
[window] | |
decorations = "none" | |
# carbonfox theme | |
[colors.primary] | |
background = '#161616' | |
foreground = '#f2f4f8' | |
# Normal colors | |
[colors.normal] | |
black = '#282828' | |
red = '#ee5396' | |
green = '#25be6a' | |
yellow = '#08bdba' | |
blue = '#78a9ff' | |
magenta = '#be95ff' | |
cyan = '#33b1ff' | |
white = '#dfdfe0' | |
# Bright colors | |
[colors.bright] | |
black = '#484848' | |
red = '#f16da6' | |
green = '#46c880' | |
yellow = '#2dc7c4' | |
blue = '#8cb6ff' | |
magenta = '#c8a5ff' | |
cyan = '#52bdff' | |
white = '#e4e4e5' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment