Skip to content

Instantly share code, notes, and snippets.

@mhoye
Last active May 22, 2024 21:42
Show Gist options
  • Save mhoye/fc8e4f17ac348ce52633b027f85f427b to your computer and use it in GitHub Desktop.
Save mhoye/fc8e4f17ac348ce52633b027f85f427b to your computer and use it in GitHub Desktop.
alacritty.toml
# 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