2025-01-08 03:00:24 +01:00
|
|
|
# Alacritty
|
|
|
|
|
2025-01-09 00:43:45 +01:00
|
|
|
My configuration for the [Alacritty](https://alacritty.org) terminal emulator.
|
2025-01-08 03:00:24 +01:00
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
2025-01-08 03:02:34 +01:00
|
|
|
Symlink `hezkore.toml` to `$XDG_CONFIG_HOME/alacritty/hezkore.toml`.\
|
2025-01-08 03:03:24 +01:00
|
|
|
Or `%APPDATA%\alacritty\alacritty.toml` on Windows.\
|
2025-01-08 03:00:24 +01:00
|
|
|
Then add `import = [ "./hezkore.toml" ]` under `[general]` in your `alacritty.toml` file.
|
|
|
|
|
|
|
|
### Automatic Installation (Linux)
|
|
|
|
|
|
|
|
```bash
|
|
|
|
mkdir -p $XDG_CONFIG_HOME/alacritty
|
|
|
|
ln -s $PWD/hezkore.toml $XDG_CONFIG_HOME/alacritty/hezkore.toml
|
|
|
|
|
|
|
|
# Only if you don't already have a [general] section in your alacritty.toml
|
|
|
|
echo '[general]' > $XDG_CONFIG_HOME/alacritty/alacritty.toml
|
|
|
|
echo 'import = [ "./hezkore.toml" ]' >> $XDG_CONFIG_HOME/alacritty/alacritty.toml
|
|
|
|
```
|
|
|
|
|