Home Alacritty install and config guide
Post
Cancel

Alacritty install and config guide

1 - Install alacritty

I’m a fedora user, so I’m gonna use DNF but if you’re Ubuntu user try APT instead of DNF:

1
sudo dnf install alacritty

2 - Create config file

1
nvim ~/.alacritty.toml

3 - Inside of config file

1
2
3
4
5
6
7
8
9
10
[shell]
program = "/bin/zsh"

[font]
normal = { family = "Hack Nerd Font", style = "Regular" }
size = 14

[cursor]
style = { shape = "Underline" }
unfocused_hollow = false

4 - Save it and open alacritty again

This post is licensed under CC BY 4.0 by the author.