-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathinit.sh
executable file
·64 lines (56 loc) · 993 Bytes
/
init.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
#!/bin/zsh
# Disable keyboard accents
defaults write -g ApplePressAndHoldEnabled -bool false
# Install CLI Tools
brew install \
ack \
coreutils \
fzf \
git \
neovim \
ripgrep \
tmux \
tree \
vim \
wget
# Install GUIs
brew install --cask \
android-file-transfer \
discord \
firefox \
google-chrome \
iterm2 \
obs \
postico \
postman \
qbittorrent \
slack \
spotify \
the-unarchiver \
visual-studio-code \
vlc
# Setup tmux
cd
git clone https://github.com/gpakosz/.tmux.git
ln -s -f .tmux/.tmux.conf
# Install NVM
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"
nvm install --lts
nvm use --lts
# Clone personal public dotfiles
cd
git clone https://github.com/dmtrxw/public-dotfiles.git
rm -rf public-dotfiles/.git/
cp -r public-dotfiles/.* .
rm -rf public-dotfiles
npm install -g \
json-server \
neovim \
nodemon \
pm2 \
prettier \
serve \
typescript-language-server \
typescript