Created
September 14, 2024 14:55
-
-
Save CharFractal/ea151e5e31a4a69dca46f74ee43240f7 to your computer and use it in GitHub Desktop.
Ultimate Alacritty config
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
import = ["~/.config/alacritty/blood_moon.toml"] | |
[shell] | |
program = "/bin/fish" | |
[window] | |
opacity = 0.4 | |
[font] | |
normal = { family = "JetBrains Mono" , style = "Bold"} | |
bold = { family = "JetBrains Mono" , style = "ExtraBold"} | |
italic = { family = "JetBrains Mono" , style = "LightItalic"} | |
size = 13 | |
[cursor] | |
style = { shape = "Underline" , blinking = "Always"} | |
thickness = 0.5 | |
blink_interval = 80 | |
blink_timeout = 0 | |
#[debug] | |
#render_timer = true | |
#log_level = "Debug" | |
#highlight_damage = true | |
#print_events = true |
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
#moonfly | |
[colors] | |
draw_bold_text_with_bright_colors = true | |
#transparent_background_colors = true | |
[colors.bright] | |
black = "#949494" | |
blue = "#74b2ff" | |
cyan = "#85dc85" | |
green = "#36c692" | |
magenta = "#ae81ff" | |
red = "#ff5189" | |
white = "#e4e4e4" | |
yellow = "#c6c684" | |
[colors.cursor] | |
cursor = "#8e8e8e" | |
text = "#000000" | |
[colors.normal] | |
black = "#323437" | |
blue = "#80a0ff" | |
cyan = "#79dac8" | |
green = "#8cc85f" | |
magenta = "#cf87e8" | |
red = "#ff5454" | |
white = "#c6c6c6" | |
yellow = "#e3c78a" | |
[colors.primary] | |
background = "#080808" | |
bright_foreground = "#eeeeee" | |
foreground = "#bdbdbd" | |
[colors.selection] | |
background = "#b2ceee" | |
text = "#080808" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment