]> git.friedersdorff.com Git - max/saltfiles.git/blob - states/zsh/files/zshrc
Print virtualenv directory if active
[max/saltfiles.git] / states / zsh / files / zshrc
1 # The following lines were added by compinstall
2
3 zstyle ':completion:*' completer _expand _complete _ignored _correct _approximate
4 zstyle ':completion:*' completions 1
5 zstyle ':completion:*' expand suffix
6 zstyle ':completion:*' glob 1
7 zstyle ':completion:*' ignore-parents parent pwd
8 zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS}
9 zstyle ':completion:*' list-prompt %SAt %p: Hit TAB for more, or the character to insert%s
10 zstyle ':completion:*' list-suffixes true
11 zstyle ':completion:*' max-errors 1
12 zstyle ':completion:*' menu select=1
13 zstyle ':completion:*' preserve-prefix '//[^/]##/'
14 zstyle ':completion:*' prompt 'Corrections with %e differences:'
15 zstyle ':completion:*' select-prompt %SScrolling active: current selection at %p%s
16 zstyle ':completion:*' substitute 1
17 zstyle :compinstall filename '/home/max/.zshrc'
18
19 autoload -Uz compinit
20 compinit
21 # End of lines added by compinstall
22 # Lines configured by zsh-newuser-install
23 HISTFILE=~/.histfile
24 HISTSIZE=100000
25 SAVEHIST=100000
26 setopt appendhistory autocd extendedglob nomatch
27 unsetopt beep notify
28 bindkey -v
29 # End of lines configured by zsh-newuser-install
30
31 # Prompt
32 NEWLINE=$'\n'
33 setopt prompt_subst
34
35
36 p="%(?;%F{green};%F{red})[%h]%f "
37 p+="%F{red}%B%n%b%f@%F{red}%B%m%b%f"
38 p+=":%F{blue}%~%f"
39 p+="${NEWLINE}%(!.#.$) "
40
41 virtual_env() {
42         if [ -n "${VIRTUAL_ENV+1}" ]; then
43                 home_rel_path=$(echo ${VIRTUAL_ENV} | sed "s;^${HOME};~;")
44                 echo -n "(${home_rel_path}) "
45         fi
46 }
47
48 source ~/.git-prompt.sh
49 precmd () {
50         __git_ps1 "" "$(virtual_env)${p}" "${NEWLINE}[%s]${NEWLINE}"
51 }
52
53
54 if ! pgrep -x -u "${USER}" gpg-agent >/dev/null 2>&1; then
55   gpg-connect-agent /bye >/dev/null 2>&1
56 fi
57
58 unset SSH_AGENT_PID
59 if [ "${gnupg_SSH_AUTH_SOCK_by:-0}" -ne $$ ]; then
60   export SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket)
61 fi
62
63
64 gpg-connect-agent updatestartuptty /bye > /dev/null
65
66 bindkey '^R' history-incremental-search-backward
67
68 if [[ -f ~/.shell_aliases ]]; then
69         source ~/.shell_aliases
70 fi