-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathinstall
More file actions
executable file
·21 lines (17 loc) · 623 Bytes
/
install
File metadata and controls
executable file
·21 lines (17 loc) · 623 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env zsh
export DOTFILES="${HOME}/.dotfiles"
PATH="/usr/bin:/bin:/usr/sbin:/sbin" # system base PATH
PATH="${PATH}:/usr/local/bin" # intel homebrew
PATH="${PATH}:/opt/homebrew/bin" # M1 homebrew
PATH="${PATH}:${DOTFILES}/bin" # my stuff
export PATH
mkdir -p "${HOME}/src"
"${DOTFILES}/installers/setup-macos" &&
"${DOTFILES}/installers/config" &&
"${DOTFILES}/installers/hosts" &&
"${DOTFILES}/installers/brew" &&
"${DOTFILES}/installers/nvim-nightly" &&
"${DOTFILES}/installers/repos_sync" &&
"${DOTFILES}/installers/others" &&
"${DOTFILES}/installers/opencode" &&
"${DOTFILES}/bin/upgrade"