Mercurial > dotfiles
view install.sh @ 301:92f460133b0c
Use Steve Losh's templates from some correct place. Add Jordi's aliases.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Fri, 22 May 2015 15:20:20 -0700 |
parents | 9056a39ef016 |
children | 252fda0d7c60 |
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" echo terse-status = $CWD/lib/hg/terse-status/terse-status.py >> "$HOME/.hgrc" echo remotenames = $CWD/lib/hg/hgremotenames/remotenames.py >> "$HOME/.hgrc" # GIT # --- ln -s "$CWD/git/gitconfig" "$HOME/.gitconfig" # WEB BROWSER # ----------- echo set runtimepath=~/.pentadactyl,$CWD/pentadactyl > "$HOME/.pentadactylrc" echo source "$CWD/pentadactyl/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"