-
Notifications
You must be signed in to change notification settings - Fork 0
/
init.sh
executable file
·55 lines (39 loc) · 1.03 KB
/
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
#!/bin/sh
echo "Setting up..."
# Git things
git config --global core.autocrlf input
# Check for homebrew and install it
if test ! $(which brew); then
echo "Installing homebrew"
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
else
echo "homebrew allready instaled"
fi
# Update homebrew
brew update
# Install dependencies (Brewfile)
#brew tap homebrew/bundle
#brew bundle
#echo "Beginning node stuffs"
## Create NVM dir
#mkdir ~/.nvm
#echo ".nvm dir created"
#export NVM_DIR="$HOME/.nvm"
# . "/usr/local/opt/nvm/nvm.sh"
#nvm install node
#echo "last node version instaled"
#echo "node stuffs done"
# Install oh-my-zsh
#curl -L https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh | sh
# link .zshrc
#ln -sf ~/dotfiles/.zshrc ~/.zshrc
# Make ZSH default
#chsh -s $(which zsh)
# Install z
#echo "Installing z"
#git clone https://github.com/rupa/z.git ~/z
#sh ./vim/init.sh
# TMUX CONF
# link .tmux.conf
#echo "tmux conf link"
#ln -sf ~/dotfiles/.tmux.conf ~/.tmux.conf