diff install.sh @ 70:d753f7893361

Added `bashrc`.
author Ludovic Chabant <ludovic@chabant.com>
date Sun, 05 Feb 2012 14:11:56 -0800
parents b5f45325f37a
children 2e0fbe44e9fe
line wrap: on
line diff
--- a/install.sh	Fri Dec 09 23:24:17 2011 -0800
+++ b/install.sh	Sun Feb 05 14:11:56 2012 -0800
@@ -2,9 +2,17 @@
 
 CWD="$( cd "$( dirname "$0" )" && pwd )"
 
+# BASH
+# ----
+ln -s "$CWD/bashrc/bashrc" "$HOME/.bashrc"
+
+# 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"
@@ -12,3 +20,4 @@
 
 ln -s "$CWD/hgrc/hgignore" "$HOME/.hgignore"
 
+