diff options
author | Alberto Corona <ac@albertocorona.com> | 2017-01-07 18:12:28 -0600 |
---|---|---|
committer | Joe Wilm <jwilm@users.noreply.github.com> | 2017-01-09 09:23:32 -0800 |
commit | 929403386cd855a1715334db9c6c4cd1ae08f4a6 (patch) | |
tree | a7284aab156b4743ee1ec6a84a6594b817e44f14 /README.md | |
parent | 987b8555def9b321d8388d7ca8290d214bc51c4a (diff) | |
download | alacritty-929403386cd855a1715334db9c6c4cd1ae08f4a6.tar.gz alacritty-929403386cd855a1715334db9c6c4cd1ae08f4a6.zip |
Support config path `$XDG_CONFIG/alacritty.yml`
- Update README to reflect changes
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -143,10 +143,11 @@ you'll probably end up wanting to customize it anyhow. There is a default file as the following paths: 1. `$XDG_CONFIG_HOME/alacritty/alacritty.yml` -2. `$HOME/.config/alacritty/alacritty.yml` +2. `$XDG_CONFIG_HOME/alacritty.yml` +3. `$HOME/.config/alacritty/alacritty.yml` -If these files are not found then one is created as `$HOME/.config/alacritty/alacritty.yml` -once alacritty is first run. +If neither path 1 or 2 are found then `$HOME/.config/alacritty/alacritty.yml` +is created as or once alacritty is first run. Many configuration options will take effect immediately upon saving changes to the config file. The only exception is the `font` and `dpi` section which |