-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.sh
More file actions
55 lines (41 loc) · 1.01 KB
/
Copy pathinstall.sh
File metadata and controls
55 lines (41 loc) · 1.01 KB
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
#!/bin/bash
# Check if Homebrew is installed
if ! command -v brew &> /dev/null; then
echo "Homebrew is not installed. Installing now..."
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
exit 1
fi
# Install tools
brew install git
brew install gh
brew install gpg
brew install gpg-agent
# CocoaPods
brew install cocoapods
# Install GO
brew install go
# Install UV
brew install uv
# Install NVM
brew install nvm
# Install iTerm2
brew install --cask iterm2
# Install Tmux
# brew install tmux
# Install Starship prompt
brew install starship
# Install Zsh plugins
brew install zsh-autosuggestions
brew install zsh-syntax-highlighting
# Install Fonts
brew install --cask font-jetbrains-mono-nerd-font
brew install --cask font-jetbrains-mono
# Update and clean up Homebrew
brew update
brew upgrade
brew upgrade --cask
brew cleanup --prune=all
# Install Claude Code
curl -fsSL https://claude.ai/install.sh | bash
# Install SDKMAN
curl -s "https://get.sdkman.io" | bash