-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.sh
More file actions
21 lines (20 loc) · 827 Bytes
/
install.sh
File metadata and controls
21 lines (20 loc) · 827 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh
sudo pacman -Sy git
sudo pacman -Sy docker
git clone -b develop https://github.com/syl20bnr/spacemacs ~/.emacs.d
mkdir ~/src
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
yaourt -Sy dropbox nautilus-dropbox
sudo pacman -Sy keepass
read -n1 -r -p "Generate sshkey and add github" key
git clone git@github.com:nonlux/dot src/dot
rm ~/.zshrc
ln ~/src/dot/zsh/.zshrc ~/.zshrc
cp ~/src/dot/fonts ~/.fonts -r
ln ~/src/dot/git/.gitconfig ~/.gitconfig
sudo pacman -Sy tmux
ln ~/src/dot/tmux/.tmux.conf ~/.tmux.conf
rm ~/.spacemacs
ln ~/src/dot/spacemacs/.spacemacs ~/.spacemacs
sudo curl -L https://github.com/docker/compose/releases/download/1.22.0/docker-compose-$(uname -s)-$(uname -m) -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose