-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.conf.yaml
41 lines (34 loc) · 974 Bytes
/
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
- defaults:
link:
create: true
force: true
relink: true
shell:
stdout: true
stderr: true
- clean: ['~']
- link:
~/.config/nvim:
~/.gitconfig:
~/.tmux:
~/.tmux.conf:
~/.zshrc:
~/Library/Application Support/lazygit/config.yml:
if: '[ `uname` = Darwin ]'
path: lazygit.yml
~/Library/Application Support/Code/User/settings.json:
if: '[ `uname` = Darwin ]'
path: vscode/settings.json
~/Library/Application Support/Code/User/keybindings.json:
if: '[ `uname` = Darwin ]'
path: vscode/keybindings.json
- shell:
- description: Installing submodules
command: git submodule update --init --recursive
- description: Installing zgen
command: ./scripts/zgen
- description: Bootstrapping the machine
if: '[ `uname` = Darwin ]'
command: ./scripts/bootstrap.osx
- shell:
- [git submodule update --init --recursive, Installing submodules]