# The following lines were added by compinstall zstyle ':completion:*' completer _complete _ignored zstyle :compinstall filename '/home/me/.zshrc' autoload -Uz compinit compinit # End of lines added by compinstall # Lines configured by zsh-newuser-install HISTFILE=~/.histfile HISTSIZE=1000 SAVEHIST=1000 setopt autocd extendedglob notify bindkey -v # End of lines configured by zsh-newuser-install # le prompt #autoload -U colors && colors #PS1="%{$fg[green]%}%n@%m %{$fg[yellow]%}%~ %{$reset_color%}%% " source /home/me/.zsh-promptrc REPORTTIME=10 function apt-list-packages { dpkg-query -W --showformat='${Installed-Size} ${Package} ${Status}\n' | grep -v deinstall | sort -nr | awk '{print $1" "$2}' | less } ## Aliases ## alias -g ...='../..' alias -g ....='../../..' alias -g .....='../../../..' alias ls="ls --color=auto" source ~/.bash_aliases ## Bindings ## bindkey '^R' history-incremental-search-backward bindkey "^[[1~" vi-beginning-of-line # Home bindkey "^[[4~" vi-end-of-line # End bindkey '^[[2~' beep # Insert bindkey '^[[3~' delete-char # Del bindkey '^[[5~' vi-backward-blank-word # Page Up bindkey '^[[6~' vi-forward-blank-word # Page Down # Konsole bindkey '\e[1;5D' backward-word bindkey '\e[1;5C' forward-word bindkey '\e[H' beginning-of-line bindkey '\e[F' end-of-line ## Exports ## export PATH=~/.bin:$PATH export DEBFULLNAME='Harald Sitter' export DEBEMAIL='apachelogger@ubuntu.com' export EDITOR="vim" export DEB_NO_LZMA=1 export DEB_NO_COMPRESSION=1 export QUILT_PATCHES=debian/patches