-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.conf.yaml
59 lines (53 loc) · 1.15 KB
/
install.conf.yaml
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
53
54
55
56
57
58
59
---
- defaults:
link:
create: true
relink: true
force: true
- create:
- ~/bin
- ~/dev
- clean:
~/:
force: true
- link:
~/.zshrc:
path: zsh/zshrc
~/.oh-my-zsh:
path: zsh/ohmyzsh
~/.gitconfig:
path: git/gitconfig
~/.gitignore:
path: git/gitignore
~/.vim: vim/
- shell:
-
command: '
for file in zsh/custom/*.zsh; do
cp -arf ${file} ~/.oh-my-zsh/custom;
done'
description: Install ohmyzsh config files
-
command: '
for theme in zsh/custom/themes; do
cp -arfT ${theme} ~/.oh-my-zsh/custom/themes;
done'
description: Install ohmyzsh themes
stdout: true
-
command: '
for plugin in zsh/custom/plugins; do
cp -arfT ${plugin} ~/.oh-my-zsh/custom/plugins;
done'
description: Install ohmyzsh plugins
stdout: true
-
command: vim +PluginInstall +qall
description: Install vim Vundle plugins
- link:
~/.vimrc:
path: vim/vimrc
- shell:
-
command: git submodule update --init --recursive
description: Installing submodules