Last active
May 22, 2024 21:42
-
-
Save mhoye/fc8e4f17ac348ce52633b027f85f427b to your computer and use it in GitHub Desktop.
alacritty.toml
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
# Get Alacritty from https://alacritty.org/ and then copy the contents of this | |
# gist into ~/.alacritty.toml | |
# | |
# You can clone the Alacritty themes from https://github.com/alacritty/alacritty-theme | |
# and install Fira Code from https://github.com/tonsky/FiraCode | |
# | |
# Installing TLDR, the simplified-manual project - https://tldr.sh/ - has also been | |
# useful for me. | |
# | |
# You need to specify where you've cloned the themes repo in the first "include" | |
# statement below, and of course which one you prefer. I'm partial to Solarized | |
# Dark, but you've got a set of good options. Let your heart guide you. | |
# | |
# Feedback is welcome. | |
# | |
# - mhoye, 2024 | |
import = [ | |
"~/src/alacritty-theme/themes/solarized_dark.toml" | |
] | |
[font] | |
size = 14.0 | |
[font.bold] | |
family = "Fira Code" | |
style = "Bold" | |
[font.bold_italic] | |
family = "Fira Code" | |
style = "Bold Italic" | |
[font.italic] | |
family = "Fira Code" | |
style = "Italic" | |
[font.normal] | |
family = "Fira Code" | |
style = "Regular" | |
[env] | |
TERM = "xterm-256color" | |
[window] | |
padding.x = 8 | |
padding.y = 8 | |
#decorations = "Buttonless" | |
opacity = 0.6 | |
blur = true | |
option_as_alt = "Both" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment