You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
88 lines
2.2 KiB
88 lines
2.2 KiB
# Sourced for interactive shells
|
|
# Set up aliases, functions, options, key bindings, etc.
|
|
# Do not produce output
|
|
#
|
|
# $ZDOTDIR/.zshenv
|
|
# $ZDOTDIR/.zprofile
|
|
# $ZDOTDIR/.zshrc
|
|
# $ZDOTDIR/.zlogin
|
|
#
|
|
# http://zsh.sourceforge.net
|
|
|
|
# Source Prezto.
|
|
if [[ -s "${ZDOTDIR:-$HOME}/.zprezto/init.zsh" ]]; then
|
|
source "${ZDOTDIR:-$HOME}/.zprezto/init.zsh"
|
|
else
|
|
# Setup Prompt
|
|
declare PS1='%(!,%S%F{red},%F{green})%m:%!(%L)%#%(!,%s%f,%f) '
|
|
#declare PS1="\[\033[1;30m\][\[\033[1;34m\]\$(date +%H:%M) \u\[\033[1;30m\]@\[\033[0;35m\]\h\[\033[1;30m\]] \[\033[0;37m\]\W \[\033[1;30m\]\$\[\033[0m\] "
|
|
#PS1=$'%{\e[0;34m%}%B┌─[%b%{\e[0m%}%{\e[1;32m%}%n%{\e[1;30m%}@%{\e[0m%}%{\e[0;36m%}%m%{\e[0;34m%}%B]%b%{\e[0m%} - %b%{\e[0;34m%}%B[%b%{\e[1;37m%}%~%{\e[0;34m%}%B]%b%{\e[0m%} - %{\e[0;34m%}%B[%b%{\e[0;33m%}'%D{"%Y-%m-%d %I:%M:%S"}%b$'%{\e[0;34m%}%B]%b%{\e[0m%}
|
|
#%{\e[0;34m%}%B└─%B[%{\e[1;35m%}%?$(retcode)%{\e[0;34m%}%B]%{\e[0m%}%b '
|
|
declare RPS1='%DT%*'
|
|
fi
|
|
|
|
set -o vi
|
|
|
|
# General Settings
|
|
declare -x CALENDAR_DIR="/usr/share/calendar"
|
|
declare HISTFILESIZE='50'
|
|
declare HISTSIZE='50'
|
|
|
|
#aliases
|
|
alias c="clear; clear; dirs"
|
|
alias ls="ls -FGh"
|
|
alias su="su -m"
|
|
alias ping="ping -c 4"
|
|
alias sed="sed -E"
|
|
alias grep="grep -nHEI --color --exclude-dir=\.git --exclude-dir=\.hg --exclude-dir=\.svn --exclude-dir=build --exclude-dir=dist --exclude=tags"
|
|
|
|
if [ "$ZSH_VERSION" ]; then
|
|
autoload -U compinit
|
|
compinit
|
|
|
|
# cd hook
|
|
autoload -U add-zsh-hook
|
|
load-local-conf() {
|
|
# check file exists, is regular file and is readable:
|
|
if [[ -f .sh_source && -r .sh_source ]]; then
|
|
source .sh_source
|
|
fi
|
|
}
|
|
add-zsh-hook chpwd load-local-conf
|
|
fi
|
|
|
|
# Setup by operating system type
|
|
case `/usr/bin/uname -s` in
|
|
Darwin)
|
|
alias psql_start="sudo -u _postgres /opt/local/bin/pg_ctl -D /opt/local/var/db/pgsql/data start"
|
|
alias psql_stop="sudo -u _postgres /opt/local/bin/pg_ctl -D /opt/local/var/db/pgsql/data stop"
|
|
;;
|
|
|
|
linux*)
|
|
;;
|
|
esac
|
|
|
|
# Setup by processor type
|
|
case `/usr/bin/uname -m` in
|
|
powerpc)
|
|
;;
|
|
|
|
i386)
|
|
;;
|
|
esac
|
|
|
|
# Setup by host name
|
|
case `/usr/bin/uname -n` in
|
|
helsten)
|
|
;;
|
|
|
|
pfiefferhorn)
|
|
;;
|
|
esac
|
|
|
|
# Setup by subsystem
|
|
for f in `find $HOME/Library/Scripts/config -name '*.shrc'`; do
|
|
source "$f"
|
|
done
|
|
|