#!/bin/zsh
# ====================[ zshrc                              ]====================
#                     [ Time-stamp: "2009-04-18 19:29:36 leycec" ]
#
# --------------------( SYNOPSIS                           )--------------------
# Run after "zshenv" and "zprofile" but before "zlogin", for interactive shells.

# ....................{ ZSHRC                              }....................
# Load the system-wide RC-script, first.
#source /etc/zsh/zshrc

# ....................{ SHORTCUTS =unix                    }....................
# Emacs.
alias e-emacs="${EDITOR} ~/.emacs"

# FVWM.
alias e-arlun="${EDITOR} ~/.fvwm-crystal/recipes/Arlun"

# Mail.
alias e-muttrc="${EDITOR} ~/.mutt/muttrc"
alias afallen-sync="~/bin/afallen/afallen sync"

# Mercurial.
alias e-hgignore="${EDITOR} ~/.hgignore"

# ....................{ SHORTCUTS =code                    }....................
alias oddmuse-test="oddmuse-run --test"

# ....................{ SHORTCUTS =media                   }....................
alias pons-cohere="sdf-mount; command cp --update --verbose '/home/leycec/pub/note/book/poetry/2009~viriduals/sla/Pons Pentacrons ~ Cecil Curry'*'.sla.gz'* /www/af/b/bcurry/hg/home/leycec/pub/note/book/sla/"

# ....................{ SHORTCUTS =remote                  }....................
# FTP.
alias lftp="lftp -e lcd ~/pub/new"

# ....................{ SHORTCUTS =fuse                    }....................
sdf-push() { scp $argv[1,-2] bcurry@faeroes.freeshell.org:$argv[-1] }
sdf-pull() { scp             bcurry@faeroes.freeshell.org:$argv[1,-2] $argv[-1] }
sdf-push-pub_new() { sdf-push $* ~/pub/new/ }
sdf-pull-pub_new() { sdf-pull $* ~/pub/new/ }

# --------------------( COPYRIGHT AND LICENSE              )--------------------
# The information below applies to everything in this distribution,
# except where noted.
#              
# Copyleft 2010 by Cecil Curry.
#   
#   http://www.raiazome.com
# 
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
