-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugins.toml
52 lines (40 loc) · 1.36 KB
/
plugins.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
shell = "zsh"
apply = ["source"]
[plugins.zsh-defer]
github = "romkatv/zsh-defer"
[plugins.compinit]
inline = "autoload -Uz compinit && zsh-defer compinit"
[plugins.zsh-autosuggestions]
github = "zsh-users/zsh-autosuggestions"
use = ["{{ name }}.zsh"]
apply = ["defer"]
[plugins.zsh-syntax-highlighting]
github = "zsh-users/zsh-syntax-highlighting"
apply = ["defer"]
[plugins.enhancd]
github = "b4b4r07/enhancd"
use = ["init.sh"]
apply = ["defer"]
[plugins.powerlevel10k]
github = "romkatv/powerlevel10k"
[plugins.zsh-mise]
github = "wintermi/zsh-mise"
[plugins.zsh-kubectl-completion]
github = "nnao45/zsh-kubectl-completion"
[plugins.oh-my-zsh]
github = "ohmyzsh/ohmyzsh"
use = [
"plugins/npm/npm.plugin.zsh",
"plugins/aws/aws.plugin.zsh",
"plugins/gcloud/gcloud.plugin.zsh",
]
[plugins.oh-my-zsh-fpath]
inline = """
# fpath を設定しない oh-my-zsh プラグインがあるため、手動で追加する。
fpath=($fpath ~/.local/share/sheldon/repos/github.com/ohmyzsh/ohmyzsh/plugins/docker/completions)
fpath=($fpath ~/.local/share/sheldon/repos/github.com/ohmyzsh/ohmyzsh/plugins/terraform)
fpath=($fpath ~/.local/share/sheldon/repos/github.com/ohmyzsh/ohmyzsh/plugins/golang)
"""
[templates]
defer = "{{ hooks?.pre | nl }}{% for file in files %}zsh-defer source \"{{ file }}\"\n{% endfor %}{{ hooks?.post | nl }}"
fpath = 'fpath=( "{{ dir }}" $fpath )'