diff options
author | Christian Duerr <contact@christianduerr.com> | 2023-06-12 02:23:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-12 00:23:41 +0000 |
commit | bd4906722a1a026b01f06c94c33b13ff63a7e044 (patch) | |
tree | a2713a7b0a5fa23ec8b9055d7ed06f1cede62447 /extra/man/alacritty.1.scd | |
parent | ea2c39e65d21728e0f04b0eafcec7153e4447cd5 (diff) | |
download | r-alacritty-bd4906722a1a026b01f06c94c33b13ff63a7e044.tar.gz r-alacritty-bd4906722a1a026b01f06c94c33b13ff63a7e044.tar.bz2 r-alacritty-bd4906722a1a026b01f06c94c33b13ff63a7e044.zip |
Switch to TOML configuration format
This switches Alacritty's default configuration format from yaml to
toml. While yaml is still supported, it is done by converting it to toml
and should be removed entirely in the future.
All existing features were persisted based on my testing. Behavior
should not change much, though `--option` might have slightly different
behavior since the entire line is not interpreted as one line of toml.
A new `alacritty migrate` subcommand has been added which allows
automatic migration from yaml to toml. This also could be used as a
facility to automatically fix configuration file changes in the future.
Closes #6592.
Diffstat (limited to 'extra/man/alacritty.1.scd')
-rw-r--r-- | extra/man/alacritty.1.scd | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/extra/man/alacritty.1.scd b/extra/man/alacritty.1.scd index 4278eba1..46d34e7b 100644 --- a/extra/man/alacritty.1.scd +++ b/extra/man/alacritty.1.scd @@ -50,12 +50,12 @@ set of features with high performance. Specify alternative configuration file Alacritty looks for the configuration file at the following paths: - . $XDG_CONFIG_HOME/alacritty/alacritty.yml - . $XDG_CONFIG_HOME/alacritty.yml - . $HOME/.config/alacritty/alacritty.yml - . $HOME/.alacritty.yml + . $XDG_CONFIG_HOME/alacritty/alacritty.toml + . $XDG_CONFIG_HOME/alacritty.toml + . $HOME/.config/alacritty/alacritty.toml + . $HOME/.alacritty.toml - On Windows, the configuration file is located at %APPDATA%\\alacritty\\alacritty.yml. + On Windows, the configuration file is located at %APPDATA%\\alacritty\\alacritty.toml *--embed* <parent> X11 window ID to embed Alacritty within (decimal or hexadecimal with _0x_ prefix) |