1
0
Fork 0
mirror of https://github.com/hcartiaux/dotfiles.git synced 2024-10-18 17:25:23 +02:00
dotfiles/install.sh

90 lines
2.2 KiB
Bash
Raw Normal View History

2013-05-03 01:52:02 +02:00
#!/usr/bin/env bash
2013-05-02 23:53:31 +02:00
set -x # Debug
2013-05-02 23:59:38 +02:00
DOTFILES=~/.dotfiles
2013-05-02 23:53:31 +02:00
[[ ! -d ~/.dotfiles ]] && git clone https://github.com/hcartiaux/dotfiles.git $DOTFILES
[[ -d ~/.dotfiles ]] && ( cd $DOTFILES ; git pull )
cd ~
## zsh
2013-05-03 00:27:15 +02:00
mkdir -p ~/.zsh
2013-05-02 23:53:31 +02:00
cd ~/.zsh
2013-05-03 02:29:21 +02:00
[[ ! -d ~/.zsh/zsh-syntax-highlighting ]] && git clone https://github.com/zsh-users/zsh-syntax-highlighting.git
[[ -d ~/.zsh/zsh-syntax-highlighting ]] && (cd ~/.zsh/zsh-syntax-highlighting ; git pull )
2013-05-02 23:53:31 +02:00
ln -sf $DOTFILES/zsh/prompt_hyacinthe_setup ~/.zsh/prompt_hyacinthe_setup
ln -sf $DOTFILES/zsh/zshrc ~/.zshrc
## bash
ln -sf $DOTFILES/bash/bashrc ~/.bashrc
ln -sf $DOTFILES/bash/inputrc ~/.inputrc
ln -sf $DOTFILES/bash/bash_profile ~/.bash_profile
ln -sf $DOTFILES/bash/profile ~/.profile
ln -sf $DOTFILES/bash/bash_logout ~/.bash_logout
ln -sf $DOTFILES/bash/bash_environment ~/.bash_environment
ln -sf $DOTFILES/bash/bash_oar ~/.bash_oar
ln -sf $DOTFILES/bash/bash_aliases ~/.bash_aliases
2013-05-02 23:53:31 +02:00
2013-05-03 00:22:46 +02:00
if [[ ! -f ~/.git-prompt.sh ]] ; then
curl -o ~/.git-prompt.sh \
https://raw.github.com/git/git/master/contrib/completion/git-prompt.sh
fi
2013-05-02 23:53:31 +02:00
## vim (don't forget :BundleInstall & :BundleInstall!)
mkdir -p ~/.vim
cd ~/.vim
mkdir -p backup undo swap spell bundle
2013-05-02 23:53:31 +02:00
[[ ! -d bundle/vundle ]] && git clone https://github.com/gmarik/vundle.git bundle/vundle
[[ -d bundle/vundle ]] && ( cd bundle/vundle ; git pull )
ln -sf $DOTFILES/vim/vimrc ~/.vimrc
2013-05-03 00:43:11 +02:00
[[ ! -h ~/.vim/header ]] && ln -sf $DOTFILES/vim/header ~/.vim/header
2013-05-02 23:53:31 +02:00
[[ -e ~/.viminfo ]] && mv ~/.viminfo ~/.vim/
2013-05-02 23:53:31 +02:00
## tmux
ln -sf $DOTFILES/tmux/tmux.conf ~/.tmux.conf
## screen
ln -sf $DOTFILES/screen/screenrc ~/.screenrc
## rtorrent
ln -sf $DOTFILES/rtorrent/rtorrent.rc ~/.rtorrent.rc
mkdir -p ~/.rtorrent
2013-05-02 23:53:31 +02:00
## git
ln -sf $DOTFILES/git/gitconfig ~/.gitconfig
## ssh
mkdir -p ~/.ssh/sockets
2013-05-03 00:06:39 +02:00
ln -sf $DOTFILES/ssh/sshpubkey ~/.ssh/sshpubkey
cat $DOTFILES/ssh/config.* > ~/.ssh/config.perso
[[ ! -f ~/.ssh/config ]] && cat $DOTFILES/ssh/config{,.*} > ~/.ssh/config
2013-08-21 15:18:56 +02:00
2013-08-21 14:54:09 +02:00
## aurvote
mkdir -p ~/.config
ln -sf $DOTFILES/aurvote ~/.config/aurvote
2014-02-02 11:17:11 +01:00
## RVM configuration
ln -sf $DOTFILES/rvm/rvmrc ~/.rvmrc
2013-08-21 14:54:47 +02:00
## temporary files
ln -sf /tmp ~/.adobe
ln -sf /tmp ~/.cache
ln -sf /tmp ~/.macromedia
ln -sf /tmp ~/.thumbnails
2013-05-02 23:53:31 +02:00