mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-18 13:55:23 -05:00
Add config file locations into alacritty(5)
This commit is contained in:
parent
ed3fac8a03
commit
26ed8e1b9d
2 changed files with 16 additions and 4 deletions
|
@ -69,11 +69,9 @@ following locations:
|
||||||
3. `$HOME/.config/alacritty/alacritty.toml`
|
3. `$HOME/.config/alacritty/alacritty.toml`
|
||||||
4. `$HOME/.alacritty.toml`
|
4. `$HOME/.alacritty.toml`
|
||||||
|
|
||||||
### Windows
|
On Windows, the config file will be looked for in:
|
||||||
|
|
||||||
On Windows, the config file should be located at:
|
* `%APPDATA%\alacritty\alacritty.toml`
|
||||||
|
|
||||||
`%APPDATA%\alacritty\alacritty.toml`
|
|
||||||
|
|
||||||
## Contributing
|
## Contributing
|
||||||
|
|
||||||
|
|
|
@ -9,6 +9,20 @@ Alacritty - TOML configuration file format.
|
||||||
Alacritty's configuration file uses the TOML format. The format's specification
|
Alacritty's configuration file uses the TOML format. The format's specification
|
||||||
can be found at _https://toml.io/en/v1.0.0_.
|
can be found at _https://toml.io/en/v1.0.0_.
|
||||||
|
|
||||||
|
# LOCATION
|
||||||
|
|
||||||
|
Alacritty doesn't create the config file for you, but it looks for one in the
|
||||||
|
following locations on UNIX systems:
|
||||||
|
|
||||||
|
. `$XDG_CONFIG_HOME/alacritty/alacritty.toml`
|
||||||
|
. `$XDG_CONFIG_HOME/alacritty.toml`
|
||||||
|
. `$HOME/.config/alacritty/alacritty.toml`
|
||||||
|
. `$HOME/.alacritty.toml`
|
||||||
|
|
||||||
|
On Windows, the config file will be looked for in:
|
||||||
|
|
||||||
|
. `%APPDATA%\alacritty\alacritty.toml`
|
||||||
|
|
||||||
# GENERAL
|
# GENERAL
|
||||||
|
|
||||||
This section documents the root level of the configuration file.
|
This section documents the root level of the configuration file.
|
||||||
|
|
Loading…
Reference in a new issue