-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.conf.yaml
91 lines (77 loc) · 2.51 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
- defaults:
link:
create: true
relink: true
force: true
shell:
stdout: true
stderr: true
stdin: true
- clean: ["~", "~/.config", "~/.npm-global"]
- link:
~/.env: env/
~/.zsh_plugins.txt: shell/zsh_plugins
~/.zshenv: shell/zshenv
~/.zshrc: shell/zshrc
~/.shell/aliases.zsh: shell/aliases.zsh
~/.shell/functions.zsh: shell/functions.zsh
~/.p10k.zsh: shell/p10k.zsh
~/.gitconfig: git/gitconfig
~/.config/alacritty/alacritty.toml: config/alacritty.toml
~/.tmux.conf: config/tmux.conf
~/.config/yabai/yabairc: config/yabai/yabairc
~/.config/skhd/skhdrc: config/skhd/skhdrc
~/.mackup.cfg: config/mackup.cfg
~/.mackup/tokens.cfg: config/mackup/tokens.cfg
~/.npmrc:
create: true
path: config/.npmrc
relink: true
- create:
- ~/Library/Fonts
- ~/Projects
- ~/Backups
- ~/.mackup
- shell:
# Fonts
- description: "Installing fonts"
command: "./vendor/font-powerline/install.sh"
# Terminals
- description: "Install Alacritty themes"
command: "git clone https://github.com/alacritty/alacritty-theme ~/.config/alacritty/themes"
stderr: true
- description: "Install Tmux plugin manager"
command: "git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm"
stderr: true
- description: "Make scripts and defaults executable"
command: "chmod +x ./scripts/* && chmod +x ./defaults/*"
stderr: true
# Applications
- description: "Install Homebrew"
command: ./scripts/setup_homebrew.zsh
stderr: true
- description: "Restore App settings via Mackup"
command: "mackup restore"
stderr: true
- description: "Configure mac defaults"
command: "sudo ./defaults/macos.zsh"
stderr: true
- description: "Configure window tiling manager"
command: "yabai --start-service && skhd --start-service"
stderr: true
- description: "Configure application defaults"
command: "sudo ./defaults/net.freemacsoft.AppCleaner.zsh && ./defaults/intelliscapesolutions.Caffeine.zsh"
stderr: true
# Development
- description: "Configure Wakatime"
command: "./scripts/wakatime.zsh"
stderr: true
- description: "Configure the Node Version Manager (fnm from Vercel)"
command: "./scripts/fnm.zsh"
stderr: true
- description: "Install Node global packages"
command: "./scripts/npm.zsh
madge
serve
conventional-changelog-eslint"
stderr: false