alacritty / alacritty-theme

Collection of Alacritty color schemes
Apache License 2.0
1.48k stars 127 forks source link

Warning "Unused config key: import" when trying to import a theme #77

Closed LaurensDSchunk closed 5 months ago

LaurensDSchunk commented 5 months ago

Issue

The catppuccin-mocha theme is not being applied to Alacritty. It is at my ~/.config/alacritty/themes/catppuccin-mocha.toml. When I put in the import statement, I get the warning Unused config key: import

My alacritty.toml

# Font configuration
[font.normal]
family = "DejaVuSansM Nerd Font Propo"

# Import additional settings from another file
import = [
    "~/.config/alacritty/themes/catppuccin-mocha.toml"
]
chrisduerr commented 5 months ago

Put import at the top of the file.

LaurensDSchunk commented 5 months ago

Thank you so much! I'm new to Alacritty and TOML as a whole, so I would have never tried that.