-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathinstall.conf.yaml
63 lines (58 loc) · 1.85 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
- defaults:
link:
relink: true
- brewfile:
- Brewfile
- clean: ['~']
- create:
- ~/.config
- ~/.config/alacritty
- ~/.gnupg
- ~/code
- link:
~/.config/alacritty/alacritty.toml: config/alacritty.toml
~/.config/nvim: config/nvim
~/.gemrc: config/gemrc
~/.gitconfig: config/gitconfig
~/.gitignore: config/gitignore
~/.gnupg/gpg-agent.conf: config/gpg-agent.conf
~/.tmux.conf: config/tmux.conf
~/.tmate.conf: config/tmate.conf
~/.zshenv: config/zshenv
~/.zshrc: config/zshrc
- shell:
-
description: Install Brew
if: '[$(which brew) 2>&1 > /dev/null]'
command: ./setup_homebrew.zsh
stdin: true
stdout: true
stderr: true
-
description: Install FZF configs
command: $(brew --prefix)/opt/fzf/install --all
stderr: true
-
description: Install oh-my-zsh
command: sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" || true
-
description: Install fonts
command: cp fonts/* /Library/Fonts
-
description: Start RabbitMQ
command: brew services start rabbitmq
-
description: Start Redis
command: brew services start redis
-
description: Start MinIO
command: brew services start minio
-
description: Install JSON language server
command: npm i -g vscode-langservers-extracted
-
description: Create a blank secrets file
command: touch ~/dotfiles/config/secrets.sh
-
description: Install Ruby 3.4.1
command: ruby-install --no-reinstall ruby-3.4.1