-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.sh
executable file
·209 lines (183 loc) · 4.43 KB
/
install.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
#!/usr/bin/env bash
DOTFILES_DIR=$HOME/dotfiles
[ ! -d "${DOTFILES_DIR}" ] && echo "Directory ${DOTFILES_DIR} DOES NOT exists." && exit 1
echo "Setting up development configuration..."
mkdir -p ~/.config
setup_homebrew() {
echo "Setting up Homebrew..."
# Install Homebrew
bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
UNAME_MACHINE="$(/usr/bin/uname -m)"
if [[ "${UNAME_MACHINE}" == "arm64" ]]; then
# On ARM macOS, this script installs to /opt/homebrew only
HOMEBREW_PREFIX="/opt/homebrew"
HOMEBREW_REPOSITORY="${HOMEBREW_PREFIX}"
else
# On Intel macOS, this script installs to /usr/local only
HOMEBREW_PREFIX="/usr/local"
HOMEBREW_REPOSITORY="${HOMEBREW_PREFIX}/Homebrew"
fi
(
echo
echo 'eval "$('${HOMEBREW_REPOSITORY}'/bin/brew shellenv)"'
) >>~/.zprofile
eval "$(${HOMEBREW_REPOSITORY}/bin/brew shellenv)"
}
install_dependencies() {
echo "Installing dependencies"
# brew install --cask iterm2
brew install neovim python3 nvm yarn ripgrep pyenv the_silver_searcher fd lazydocker lazygit git wget curl unzip fontconfig go fzf
}
setup_fonts() {
brew tap homebrew/cask-fonts
brew install font-meslo-for-powerline font-meslo-lg-nerd-font
fc-cache -fv
}
setup_zsh() {
echo "Setting up zsh..."
# Install oh-my-zsh
brew install zsh
bash -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
for FILE in $(ls -A ${DOTFILES_DIR}/zsh); do
echo "Symlinking $HOME/dotfiles/zsh/$FILE to ~/$FILE"
ln -sf $DOTFILES_DIR/zsh/"$FILE" $HOME/"$FILE"
done
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
# Make ZSH default shell
chsh -s $(which zsh)
}
setup_kitty() {
echo "Setting up kitty..."
brew install kitty
echo "Symlinking $HOME/dotfiles/kitty to ~/.config/"
ln -sf $DOTFILES_DIR/kitty $HOME/.config/
}
setup_wezterm() {
echo "Setting up wezterm..."
brew install --cask wezterm
echo "Symlinking $HOME/dotfiles/wezterm/.wezterm.lua to ~/.wezterm.lua"
ln -sf $DOTFILES_DIR/wezterm/.wezterm.lua $HOME/.wezterm.lua
}
setup_nvim() {
echo "Setting up nvim..."
echo "Symlinking $HOME/dotfiles/nvim to ~/.config/"
ln -sf $DOTFILES_DIR/nvim $HOME/.config/
}
setup_tmux() {
echo "Setting up tmux..."
brew install tmux
for FILE in $(ls -A ${DOTFILES_DIR}/tmux); do
echo "Symlinking $HOME/dotfiles/tmux/$FILE to ~/$FILE"
ln -sf $DOTFILES_DIR/tmux/"$FILE" $HOME/"$FILE"
done
}
setup_tmuxinator() {
echo "Setting up tmuxinator..."
# Install tmuxinator
brew install tmuxinator
echo "Symlinking $DOTFILES_DIR/tmuxinator to ~/.config/"
ln -sf $DOTFILES_DIR/tmuxinator $HOME/.config/
}
echo "Do you wish to install homebrew?"
select yns in "Yes" "No" "Skip"; do
case $yns in
Yes)
setup_homebrew
break
;;
No) exit ;;
Skip) break ;;
esac
done
echo "Do you wish to install the dependencies?"
select yns in "Yes" "No" "Skip"; do
case $yns in
Yes)
install_dependencies
break
;;
No) exit ;;
Skip) break ;;
esac
done
echo "Do you wish to install fonts?"
select yns in "Yes" "No" "Skip"; do
case $yns in
Yes)
setup_fonts
break
;;
No) exit ;;
Skip) break ;;
esac
done
echo "Do you wish to install neovim?"
select yns in "Yes" "No" "Skip"; do
case $yns in
Yes)
setup_nvim
break
;;
No) exit ;;
Skip) break ;;
esac
done
echo "Do you wish to install zsh?"
select yns in "Yes" "No" "Skip"; do
case $yns in
Yes)
setup_zsh
break
;;
No) exit ;;
Skip) break ;;
esac
done
echo "Do you wish to install wezterm?"
select yns in "Yes" "No" "Skip"; do
case $yns in
Yes)
setup_wezterm
break
;;
No) exit ;;
Skip) break ;;
esac
done
echo "Do you wish to install kitty?"
select yns in "Yes" "No" "Skip"; do
case $yns in
Yes)
setup_kitty
break
;;
No) exit ;;
Skip) break ;;
esac
done
echo "Do you wish to install tmux?"
select yns in "Yes" "No" "Skip"; do
case $yns in
Yes)
setup_tmux
break
;;
No) exit ;;
Skip) break ;;
esac
done
echo "Do you wish to install tmuxinator?"
select yns in "Yes" "No" "Skip"; do
case $yns in
Yes)
setup_tmuxinator
break
;;
No) exit ;;
Skip) break ;;
esac
done
chmod +x $HOME/dotfiles/scripts/*
echo "Setting up development configuration... DONE"