-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.conf.yaml
67 lines (64 loc) · 2.4 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
60
61
62
63
64
65
66
- defaults:
link:
relink: true
create: true
- link:
~/.gitconfig: gitconfig
~/.my_configs.vim:
~/.vimrc:
~/.zshrc:
~/.shellrc:
~/.bashrc:
~/.bash_profile:
~/.profile:
~/.ctags:
~/.p10k.zsh:
~/bin/lscpu: bin/lscpu
~/bin/mountnas.sh: bin/mountnas.sh
~/bin/mountnas_public.sh: bin/mountnas_public.sh
~/bin/umountnas.sh: bin/umountnas.sh
~/bin/pdiff.sh: bin/pdiff.sh
~/bin/sjk: bin/sjk
~/bin/browsh: bin/browsh
~/bin/terraform: bin/terraform
~/bin/dive: bin/dive
~/bin/ansible: bin/ansible
~/bin/watch_opened_files: bin/watch_opened_files
~/bin/watch_user_processes: bin/watch_user_processes
~/bin/git-open: bin/git-open
~/bin/git-activity: bin/git-activity
- shell:
-
command: test -d ~/.oh-my-zsh || (git clone https://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh && chsh -s /bin/zsh )
stdin: true
stdout: true
stderr: true
description: Install oh-my-zsh if necessary
-
command: test -d ~/.oh-my-zsh/custom/themes/powerlevel10k || (mkdir -p ~/.oh-my-zsh/custom/themes && git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ~/.oh-my-zsh/custom/themes/powerlevel10k )
stdin: true
stdout: true
stderr: true
description: Install p10k zsh theme if necessary
-
command: test -d ~/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting || (mkdir -p ~/.oh-my-zsh/custom/plugins && git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ~/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting )
stdin: true
stdout: true
stderr: true
description: Install zsh-syntax-highlighting plugin if necessary
-
command: test -d ~/.oh-my-zsh/custom/plugins/zsh-autosuggestions || (mkdir -p ~/.oh-my-zsh/custom/plugins && git clone https://github.com/zsh-users/zsh-autosuggestions ~/.oh-my-zsh/custom/plugins/zsh-autosuggestions )
stdin: true
stdout: true
stderr: true
description: Install zsh-autosuggestions plugin if necessary
-
command: test -d ~/.vim_runtime || git clone --depth=1 https://github.com/amix/vimrc.git ~/.vim_runtime
stdout: true
stderr: true
description: Install ultimate vimrc
-
command: ./install-vim-plugins.sh
stdout: true
stderr: true
description: Install vim plugins