HISTFILE=~/.histfile HISTSIZE=1000 SAVEHIST=1000 setopt appendhistory autocd correctall nolistbeep print_exit_value setopt autopushd pushdminus pushdsilent pushdtohome setopt HIST_REDUCE_BLANKS setopt HIST_IGNORE_SPACE setopt HIST_SAVE_NO_DUPS setopt HIST_IGNORE_DUPS setopt HIST_IGNORE_ALL_DUPS setopt HIST_FIND_NO_DUPS setopt PUSHD_IGNORE_DUPS setopt braceccl setopt SHARE_HISTORY export EDITOR=nano export PATH=/usr/local/bin:/usr/local/sbin:$PATH export LC_CTYPE=fr_CH.UTF-8 export GROFF_ENCODING=utf8 export PYTHONSTARTUP=/etc/pyrc export PYTHONPATH=/usr/local/lib/python2.7/site-packages:$PYTHONPATH export PIP_USE_MIRRORS=1 export RPROMPT='%{%}%w - %T%{%}' export PROMPT='[%m:%{%}%~%{%}] %n %# ' export POSTEDIT='' # The following lines were added by compinstall zstyle ':completion:*' completer _expand _complete _correct _approximate zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}' 'm:{a-zA-Z}={A-Za-z} r:|[._-]=** r:|=**' 'm:{a-zA-Z}={A-Za-z}' 'm:{a-zA-Z}={A-Za-z}' zstyle :compinstall filename '~/.zshrc' autoload -Uz compinit zmv zed colors colors compinit # End of lines added by compinstall #export RPROMPT='%{$fg[magenta]%}%w - %T%{$reset_color%}' #export PROMPT='[%m:%{$fg[green]%}%~%{$reset_color%}] # %n %# ' if [ -d /usr/local/share/zsh-completions ]; then fpath=(/usr/local/share/zsh-completions $fpath) fi alias pytohn='python' alias l='ls -al' bindkey '' history-search-forward bindkey '' history-search-backward bindkey ' ' magic-space if [ -s $HOME/.zshpwd ]; then new_pwd=`cat $HOME/.zshpwd` if [ -d $new_pwd ]; then cd $new_pwd fi fi if [ -s /usr/local/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh ]; then source /usr/local/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh fi unalias run-help HELPDIR=/usr/local/share/zsh/helpfiles eval $(ssh-agent) function cleanup { echo "Killing SSH-Agent" kill -9 $SSH_AGENT_PID } trap cleanup EXIT