-
Notifications
You must be signed in to change notification settings - Fork 13
/
install.sh
executable file
·283 lines (237 loc) · 7.35 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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
#!/usr/bin/env bash
DOTFILES="$(pwd)"
COLOR_GRAY="\033[1;38;5;243m"
COLOR_BLUE="\033[1;34m"
COLOR_GREEN="\033[1;32m"
COLOR_RED="\033[1;31m"
COLOR_PURPLE="\033[1;35m"
COLOR_YELLOW="\033[1;33m"
COLOR_NONE="\033[0m"
title() {
echo -e "\n${COLOR_PURPLE}$1${COLOR_NONE}"
echo -e "${COLOR_GRAY}==============================${COLOR_NONE}\n"
}
error() {
echo -e "${COLOR_RED}Error: ${COLOR_NONE}$1"
exit 1
}
warning() {
echo -e "${COLOR_YELLOW}Warning: ${COLOR_NONE}$1"
}
info() {
echo -e "${COLOR_BLUE}Info: ${COLOR_NONE}$1"
}
success() {
echo -e "${COLOR_GREEN}$1${COLOR_NONE}"
}
get_linkables() {
find -H "$DOTFILES" -maxdepth 3 -name '*.symlink'
}
backup() {
BACKUP_DIR=$HOME/dotfiles-backup
echo "Creating backup directory at $BACKUP_DIR"
mkdir -p "$BACKUP_DIR"
for file in $(get_linkables); do
filename=".$(basename "$file" '.symlink')"
target="$HOME/$filename"
if [ -f "$target" ]; then
echo "backing up $filename"
cp "$target" "$BACKUP_DIR"
else
warning "$filename does not exist at this location or is a symlink"
fi
done
for filename in "$HOME/.config/nvim" "$HOME/.vim" "$HOME/.vimrc"; do
if [ ! -L "$filename" ]; then
echo "backing up $filename"
cp -rf "$filename" "$BACKUP_DIR"
else
warning "$filename does not exist at this location or is a symlink"
fi
done
}
setup_symlinks() {
title "Creating symlinks"
for file in $(get_linkables) ; do
target="$HOME/.$(basename "$file" '.symlink')"
if [ -e "$target" ]; then
info "~${target#$HOME} already exists... Skipping."
else
info "Creating symlink for $file"
ln -s "$file" "$target"
fi
done
echo -e
info "installing to ~/.config"
if [ ! -d "$HOME/.config" ]; then
info "Creating ~/.config"
mkdir -p "$HOME/.config"
fi
config_files=$(find "$DOTFILES/config" -maxdepth 1 2>/dev/null)
for config in $config_files; do
target="$HOME/.config/$(basename "$config")"
if [ -e "$target" ]; then
info "~${target#$HOME} already exists... Skipping."
else
info "Creating symlink for $config"
ln -s "$config" "$target"
fi
done
info "Symlinking hammerspoon"
if [ ! -d "$HOME/.hammerspoon" ]; then
ln -s "$DOTFILES/hammerspoon" "$HOME/.hammerspoon"
else
info "~/.hammerspoon already exists... Skipping."
fi
info "Symlinking nvchad custom config"
mkdir -p ~/.config/nvim/lua
if [ ! -d "$HOME/.config/nvim/lua/custom" ]; then
ln -s "$DOTFILES/nvim-custom" "$HOME/.config/nvim/lua/custom"
else
info "~/.config/nvim/lua/custom already exists... Skipping."
fi
}
setup_git() {
title "Setting up Git"
defaultName=$(git config user.name)
defaultEmail=$(git config user.email)
defaultGithub=$(git config github.user)
read -rp "Name [$defaultName] " name
read -rp "Email [$defaultEmail] " email
read -rp "Github username [$defaultGithub] " github
git config -f ~/.gitconfig-local user.name "${name:-$defaultName}"
git config -f ~/.gitconfig-local user.email "${email:-$defaultEmail}"
git config -f ~/.gitconfig-local github.user "${github:-$defaultGithub}"
if [[ "$(uname)" == "Darwin" ]]; then
git config --global credential.helper "osxkeychain"
else
read -rn 1 -p "Save user and password to an unencrypted file to avoid writing? [y/N] " save
if [[ $save =~ ^([Yy])$ ]]; then
git config --global credential.helper "store"
else
git config --global credential.helper "cache --timeout 3600"
fi
fi
}
setup_homebrew() {
title "Setting up Homebrew"
if test ! "$(command -v brew)"; then
info "Homebrew not installed. Installing."
# Run as a login shell (non-interactive) so that the script doesn't pause for user input
curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh | bash --login
fi
if [ "$(uname)" == "Linux" ]; then
test -d ~/.linuxbrew && eval "$(~/.linuxbrew/bin/brew shellenv)"
test -d /home/linuxbrew/.linuxbrew && eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
test -r ~/.bash_profile && echo "eval \$($(brew --prefix)/bin/brew shellenv)" >>~/.bash_profile
fi
# install brew dependencies from Brewfile
brew bundle
brew bundle cleanup
# install fzf
echo -e
info "Installing fzf"
"$(brew --prefix)"/opt/fzf/install --key-bindings --completion --no-update-rc --no-bash --no-fish
}
setup_shell() {
title "Configuring shell"
[[ -n "$(command -v brew)" ]] && zsh_path="$(brew --prefix)/bin/zsh" || zsh_path="$(which zsh)"
if ! grep "$zsh_path" /etc/shells; then
info "adding $zsh_path to /etc/shells"
echo "$zsh_path" | sudo tee -a /etc/shells
fi
if [[ "$SHELL" != "$zsh_path" ]]; then
chsh -s "$zsh_path"
info "default shell changed to $zsh_path"
fi
}
function setup_terminfo() {
title "Configuring terminfo"
info "adding tmux.terminfo"
tic -x "$DOTFILES/resources/tmux.terminfo"
info "adding xterm-256color-italic.terminfo"
tic -x "$DOTFILES/resources/xterm-256color-italic.terminfo"
}
setup_zsh_prezto() {
source prezto_setup.zsh
}
setup_hosts_file() {
info 'Set up hosts file'
git clone git@github.com:StevenBlack/hosts.git --depth 1 $DOTFILES/hosts
cd $DOTFILES/hosts
pip3 install --user -r requirements.txt
cp $DOTFILES/hosts-allowlist $DOTFILES/hosts/whitelist
cp $DOTFILES/hosts-denylist $DOTFILES/hosts/blacklist
python3 updateHostsFile.py -a -f -r -e gambling fakenews porn -w whitelist -x blacklist
}
setup_misc() {
info 'Install tmux plugin manager'
git clone https://github.com/tmux-plugins/tpm --depth 1 ~/.tmux/plugins/tpm
info "Create .ssh/control file for multiplexing..."
mkdir -p ~/.ssh/control
info "Installing Node.js LTS via fnm..."
fnm install --lts
info "Installing neovim python libraries..."
python3 -m pip install --user --upgrade pynvim
info 'Installing Yarn...'
curl -o- -L https://yarnpkg.com/install.sh | bash
echo 'Installing rust...'
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
echo 'Configuring dock...'
source scripts/dock.sh
}
setup_macos() {
title "Configuring macOS"
if [[ "$(uname)" == "Darwin" ]]; then
source scripts/osx.sh
else
warning "macOS not detected. Skipping."
fi
}
# Only runs if you pass in parameters. Won't run everything by default unless you pass in: `./install.sh all`
case "$1" in
backup)
backup
;;
link)
setup_symlinks
;;
git)
setup_git
;;
homebrew)
setup_homebrew
;;
shell)
setup_shell
;;
terminfo)
setup_terminfo
;;
hosts)
setup_hosts_file
;;
misc)
setup_misc
;;
macos)
setup_macos
;;
all)
setup_symlinks
setup_terminfo
setup_homebrew
setup_shell
setup_git
setup_terminfo
setup_hosts_file
setup_misc
setup_macos
;;
*)
echo -e $"\nUsage: $(basename "$0") {backup|link|git|homebrew|shell|terminfo|macos|all}\n"
exit 1
;;
esac
echo -e
success "Done."