-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathinstall.sh
More file actions
executable file
·59 lines (42 loc) · 1.12 KB
/
Copy pathinstall.sh
File metadata and controls
executable file
·59 lines (42 loc) · 1.12 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
56
57
58
59
#!/bin/bash
echo "Installing Brew bits"
brew bundle
echo ""
echo "Maybe install asdf here?"
# asdf plugin add crystal
# asdf plugin add elixir
# asdf plugin add erlang
# asdf plugin add nodejs
# asdf plugin add python
# asdf plugin add ruby
# asdf plugin add yarn
# asdf install
echo ""
echo ""
echo "Linking Files"
for dotfile in .*; do
test -f || continue
if [ -f "$dotfile" ]; then
echo "Linking: $dotfile"
rm ~/$dotfile
ln -s $PWD/$dotfile ~/$dotfile
fi
done
echo ""
echo "Install oh.my.zsh"
# sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
# git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k
echo ""
echo "Adding plug.vim"
# curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
# https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
echo ""
echo "Installing Vim plugins"
# vim +PlugInstall +qall >/dev/null 2>&1
echo ""
echo "Install Ruby Gems"
gem install rubocop
gem install rubocop-rspec
gem install rubocop-rails
gem install rubocop-performance
npm install -g prettier