blob: b590a370f49b2f2f9d17097c83b4a293b8452bca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# profiles plugin
This plugin allows you to create separate configuration files for zsh based
on a domain of your host.
It takes your `HOST` and looks for files named according to the domain parts
in `$ZSH_CUSTOM/profiles/` directory.
For example, for `HOST=my.domain.com`, it will try to load the following files:
```text
$ZSH_CUSTOM/profiles/my.domain.com
$ZSH_CUSTOM/profiles/domain.com
$ZSH_CUSTOM/profiles/com
```
To use it, add profiles to the plugins array of your zshrc file:
```sh
plugins=(... profiles)
```
|