view install.sh @ 81:2e0fbe44e9fe

Updated bashrc files.
author Ludovic Chabant <ludovic@chabant.com>
date Wed, 14 Mar 2012 11:34:05 -0700
parents d753f7893361
children 6b2c3f14a5c1
line wrap: on
line source

#!/bin/sh

CWD="$( cd "$( dirname "$0" )" && pwd )"

# BASH
# ----
ln -s "$CWD/bashrc/bashrc" "$HOME/.bashrc"
ln -s "$CWD/bashrc/bash_profile" "$HOME/.bash_profile"

# VIM
# ---
ln -s "$CWD/vim"        "$HOME/.vim"
ln -s "$CWD/vim/vimrc"  "$HOME/.vimrc"

# MERCURIAL
# ---------
echo %include $CWD/hgrc/hgrc > "$HOME/.hgrc"
echo [extensions] >> "$HOME/.hgrc"
echo hggit = $CWD/lib/hg/hg-git/hggit/ >> "$HOME/.hgrc"
echo onsub = $CWD/lib/hg/onsub/onsub.py >> "$HOME/.hgrc"

ln -s "$CWD/hgrc/hgignore" "$HOME/.hgignore"