Mercurial > dotfiles
view install.sh @ 83:a54180045075
Vimrc changes:
- Fixed path problems since we don't link .vim anymore.
- Fixed matchpairs in PHP.
- Added proper autocmd group.
- Changed mappings for CtrlP.
- Cleaned up code.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Thu, 22 Mar 2012 11:49:03 -0700 |
parents | 6b2c3f14a5c1 |
children | b96ff0dd0137 |
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 [ui] >> "$HOME/.hgrc" echo ignore = $CWD/hgrc/hgignore >> "$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"