-
Notifications
You must be signed in to change notification settings - Fork 0
/
brew.sh
executable file
·82 lines (58 loc) · 1.53 KB
/
brew.sh
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
#!/usr/bin/env bash
echo " > Install Xcode tools"
xcode-select --install
echo " > Install brew"
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew doctor
brew update
echo " > Install Kitty"
brew cask install kitty
echo " > Install git"
brew install git
echo " > Install zsh"
brew install zsh
echo "$(brew --prefix)/bin/zsh" | sudo tee -a /etc/shells
chsh -s "$(brew --prefix)/bin/zsh"
echo " > Install fzf"
brew install fzf
/usr/local/opt/fzf/install
echo " > Install Silver Searcher"
brew install the_silver_searcher
echo " > Install JetBrains Mono"
brew tap homebrew/cask-fonts
brew cask install font-jetbrains-mono
echo " > Install Amethyst"
brew cask install amethyst
echo " > Install Node"
brew install node
echo " > Install Yarn"
brew install yarn
echo " > Install Ctags"
brew tap universal-ctags/universal-ctags
brew install --HEAD universal-ctags
sudo xcodebuild -license
echo " > Install helper utils"
brew install tree
brew install wget
echo " > Install YouTube-dl"
brew install youtube-dl
echo " > Install ffmpeg"
brew install ffmpeg
echo " > Install poetry"
brew install poetry
echo " > Install postgres"
brew install postgresql
ln -sfv /usr/local/opt/postgresql/*.plist ~/Library/LaunchAgents
createuser -s postgres
echo " > Install pgcli"
brew install pgcli
echo " > Install bat"
brew install bat
echo " > Install pre-commit"
brew install pre-commit
echo " > Install gettext"
brew install gettext
echo " > Install watson"
brew install watson
echo " > Install redis"
brew install redis