Create a basic config for alacritty

Create a basic configuration for alacritty. We create a minimal
configuration file which just imports the "style" configuration. In
the style configuration we configure the font and the color of the
cursor.
This commit is contained in:
finga 2024-03-08 17:25:31 +01:00
commit 9dec689c77
3 changed files with 16 additions and 0 deletions

View file

@ -0,0 +1,3 @@
import = [
"~/.config/alacritty/style.toml",
]

View file

@ -0,0 +1,6 @@
[font]
normal = { family = "NimbusMonoPS", style = "Regular" }
size = 10
[colors]
cursor = { cursor = "#00aa00" }

7
.gitignore.d/alacritty Normal file
View file

@ -0,0 +1,7 @@
*
!/.config
!/.config/alacritty
!/.config/alacritty/alacritty.toml
!/.config/alacritty/style.toml
!/.gitignore.d
!/.gitignore.d/alacritty