-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.sh
executable file
·41 lines (31 loc) · 1.19 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
#!/bin/sh
# Create symlinks
mkdir -p ./.vim/bundle
./create_symlinks.sh
# Clone zsh syntax highlighting and git prompt
mkdir -p $HOME/code && cd $HOME/code && \
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git
git clone https://github.com/olivierverdier/zsh-git-prompt.git
# Install fonts
git clone https://github.com/phallus/fonts ~/code/phallus-fonts &&
cd ~/code/phallus-fonts && ./install
mkdir -p ~/.vim/bundle
cd ~/bin && curl -OL https://raw.github.com/richo/battery/master/bin/battery &&\
chmod +x ~/bin/battery
# Install Vundle
#git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
# Install NeoBundle
git clone https://github.com/Shougo/neobundle.vim ~/.vim/bundle/neobundle.vim
# Install Spacemacs
git clone --recursive http://github.com/syl20bnr/spacemacs ~/.emacs.d
# Install font
#cd /tmp &&\
# wget http://susanoganders.dk/termsyn-1.8.7.tar.gz &&\
# tar xvfz termsyn-*.tar.gz &&\
# sudo mkdir -p /usr/share/fonts/local
# sudo cp termsyn-*/*.pcf /usr/share/fonts/local/ &&\
# sudo fc-cache -f &&\
# sudo mkfontscale /usr/share/fonts/local/
# sudo mkfontdir /usr/share/fonts/local/
# Install tmuxinator
sudo gem install tmuxinator