-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.conf.yaml
34 lines (31 loc) · 1.25 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
- defaults:
link:
relink: true
- clean: ['~']
- link:
~/.zshrc:
path: ./zsh/base.zsh
force: true
~/.gitconfig:
path: git.conf
force: true
- shell:
- description: Installing submodules
command: git submodule update --init --recursive
- description: Installing oh-my-zsh
command: $([[ -d "$HOME/.oh-my-zsh" ]] || sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" --unattended --keep-zshrc)
- description: Installing Powerlevel10k
command: repo=https://github.com/romkatv/powerlevel10k &&
target=${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/themes/powerlevel10k &&
git clone --depth 1 $repo $target ||
git -C $target pull
- description: Installing zsh-autosuggestions
command: repo=https://github.com/zsh-users/zsh-autosuggestions &&
target=${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions &&
git clone --depth 1 $repo $target ||
git -C $target pull
- description: Installing zsh-syntax-highlighting
command: repo=https://github.com/zsh-users/zsh-syntax-highlighting &&
target=${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting &&
git clone --depth 1 $repo $target ||
git -C $target pull