aboutsummaryrefslogtreecommitdiff
path: root/extra
diff options
context:
space:
mode:
authorJoshua Cao <cao.joshua@yahoo.com>2024-07-02 12:14:25 -0700
committerGitHub <noreply@github.com>2024-07-02 19:14:25 +0000
commit5e6b92db85b3ea7ffd06a7a5ae0d2d62ad5946a6 (patch)
treeab37c6d2cd45de1868b65974d5f7d9bff2fe0973 /extra
parent138ac426bfeb73db4f00d13a9126527d02c1e867 (diff)
downloadalacritty-5e6b92db85b3ea7ffd06a7a5ae0d2d62ad5946a6.tar.gz
alacritty-5e6b92db85b3ea7ffd06a7a5ae0d2d62ad5946a6.zip
Support relative imports in config file
Co-authored-by: Christian Duerr <contact@christianduerr.com>
Diffstat (limited to 'extra')
-rw-r--r--extra/man/alacritty.5.scd6
1 files changed, 4 insertions, 2 deletions
diff --git a/extra/man/alacritty.5.scd b/extra/man/alacritty.5.scd
index 1b56210b..15bc2127 100644
--- a/extra/man/alacritty.5.scd
+++ b/extra/man/alacritty.5.scd
@@ -35,13 +35,15 @@ This section documents the root level of the configuration file.
file being loaded last. If a field is already present in a previous import,
it will be replaced.
- All imports must either be absolute paths starting with _/_, or paths
- relative to the user's home directory starting with _~/_.
+ All imports must either be absolute paths starting with _/_, paths relative
+ to the user's home directory starting with _~/_, or paths relative from the
+ current config file.
Example:
import = [++
_"~/.config/alacritty/base16-dark.toml"_,++
_"~/.config/alacritty/keybindings.toml"_,++
+ _"alacritty-theme/themes/gruvbox_dark.toml"_,++
]
*shell* = _"<string>"_ | { program = _"<string>"_, args = [_"<string>"_,] }