Last active
January 12, 2024 10:51
-
-
Save levihuayuzhang/d3df6b895c8ea64dd26318555ddbdfc3 to your computer and use it in GitHub Desktop.
alacritty configs
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
# locate at ~/.config/alacritty/alacritty.toml | |
# theme (https://github.com/alacritty/alacritty-theme) | |
# theme | |
import = [ | |
"~/.config/alacritty/themes/themes/everforest_dark.toml", | |
# "~/.config/alacritty/themes/themes/gruvbox_dark.toml", | |
] | |
# fonts | |
#[font] | |
#size = 12.0 | |
[font.bold] | |
# family = "Hack Nerd Font Mono" | |
family = "CaskaydiaCove Nerd Font Mono" | |
style = "Bold" | |
[font.bold_italic] | |
# family = "Hack Nerd Font Mono" | |
family = "CaskaydiaCove Nerd Font Mono" | |
style = "Bold Italic" | |
[font.italic] | |
# family = "Hack Nerd Font Mono" | |
family = "CaskaydiaCove Nerd Font Mono" | |
style = "Italic" | |
[font.normal] | |
# family = "Hack Nerd Font Mono" | |
family = "CaskaydiaCove Nerd Font Mono" | |
style = "Regular" | |
[window] | |
#decorations = "Buttonless" | |
#decorations = "Transparent" | |
opacity = 0.8 | |
blur = true | |
#startup_mode = "Maximized" | |
#padding = { x = 10, y = 20 } | |
[cursor] | |
style = { shape = "Block", blinking = "On" } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment