Mercurial > dotfiles
view install.sh @ 284:8d04d41d4903
Don't change the cwd when no project root markers have been found.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Mon, 02 Feb 2015 11:01:13 -0800 |
parents | 897a6823d603 |
children | 65a5097587d4 |
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" # FISH # ---- mkdir -p $HOME/.config/fish/ ln -s "$CWD/fish/config.fish" "$HOME/.config/fish/config.fish" # VIM # --- echo set runtimepath+=$CWD/vim > "$HOME/.vimrc" echo source $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" echo allpaths = $CWD/lib/hg/allpaths/allpaths.py >> "$HOME/.hgrc" echo prompt = $CWD/lib/hg/hg-prompt/prompt.py >> "$HOME/.hgrc" echo changelog = $CWD/lib/hg/changelog/changelog.py >> "$HOME/.hgrc" echo evolve = $CWD/lib/hg/mutable-history/hgext/evolve.py >> "$HOME/.hgrc" # GIT # --- cp "$CWD/git/gitconfig" "$HOME/.gitconfig" # WEB BROWSER # ----------- ln -s "$CWD/pentadactylrc" "$HOME/.pentadactylrc" # TMUX # ---- ln -s "$CWD/tmux/tmux.conf" "$HOME/.tmux.conf" # WEECHAT # ------ ln -s "$CWD/weechat" "$HOME/.weechat" # MUTT # ---- echo source \"gpg2 -dq $CWD/mutt/variables.gpg \|\" > "$HOME/.muttrc" echo source "$CWD/mutt/muttrc" >> "$HOME/.muttrc" echo source "$CWD/mutt/mutt-colors-solarized/mutt-colors-solarized-dark-256.muttrc" >> "$HOME/.muttrc"