2016-07-18 11:30:31 +02:00
|
|
|
setopt nobeep appendhistory histignoredups histignorespace extendedglob nomatch notify
|
2015-02-13 18:31:43 +01:00
|
|
|
bindkey -e
|
|
|
|
bindkey "^[[3~" delete-char
|
|
|
|
bindkey "^[3;5~" delete-char
|
2015-02-09 20:07:40 +01:00
|
|
|
export HISTFILE=~/.zsh_history
|
|
|
|
export HISTSIZE=1000
|
|
|
|
export SAVEHIST=1000
|
|
|
|
export CLICOLOR=1
|
2015-10-02 21:03:55 +02:00
|
|
|
export EDITOR='vim'
|
2014-10-23 16:32:32 +02:00
|
|
|
export PAGER='less'
|
2014-10-18 21:59:14 +02:00
|
|
|
export USER_NICKNAME="Rodolphe Breard"
|
2015-02-13 18:31:43 +01:00
|
|
|
export DEBEMAIL="packages+deb@what.tf"
|
|
|
|
export DEBFULLNAME="$USER_NICKNAME"
|
2017-02-12 16:09:16 +01:00
|
|
|
|
|
|
|
# Path
|
|
|
|
[ -f ~/.setpath.sh ] && . ~/.setpath.sh
|
2015-02-09 20:07:40 +01:00
|
|
|
|
2015-02-13 18:31:43 +01:00
|
|
|
# Colors
|
|
|
|
[ "$CLICOLOR" -ne 0 ] && hash dircolors 2>/dev/null && eval $(dircolors -b)
|
2014-09-29 10:52:58 +02:00
|
|
|
|
|
|
|
# Command completion
|
|
|
|
autoload -U compinit
|
|
|
|
compinit
|
|
|
|
|
|
|
|
# Prompt
|
2015-10-20 13:52:26 +02:00
|
|
|
if [ -f "/usr/bin/liquidprompt" ]; then
|
2014-09-29 10:52:58 +02:00
|
|
|
unset PROMPT_COMMAND
|
2015-10-20 13:52:26 +02:00
|
|
|
. "/usr/bin/liquidprompt"
|
2014-09-29 10:52:58 +02:00
|
|
|
elif [ -f "$HOME/liquidprompt/liquidprompt" ]; then
|
|
|
|
unset PROMPT_COMMAND
|
2015-02-13 18:31:43 +01:00
|
|
|
. "$HOME/liquidprompt/liquidprompt"
|
2015-10-20 13:52:26 +02:00
|
|
|
elif [ "$CLICOLOR" -ne 0 ]; then
|
|
|
|
autoload -U colors && colors
|
|
|
|
PS1="%{$fg[red]%}%n%{$reset_color%}@%{$fg[yellow]%}%M%{$fg[red]%}->%{$reset_color%} "
|
2014-09-29 10:52:58 +02:00
|
|
|
else
|
2015-10-20 13:52:26 +02:00
|
|
|
PS1='%n@%M-> '
|
2014-09-29 10:52:58 +02:00
|
|
|
fi
|
|
|
|
|
2014-11-06 13:44:55 +01:00
|
|
|
# Syntax-highlighting
|
|
|
|
if [ -f "/usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh" ]; then
|
2015-02-13 18:31:43 +01:00
|
|
|
. "/usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh"
|
2014-11-06 13:44:55 +01:00
|
|
|
fi
|
|
|
|
|
2015-02-09 22:28:28 +01:00
|
|
|
# GPG Agent
|
|
|
|
export GPG_TTY=$(tty)
|
2016-06-28 23:14:30 +02:00
|
|
|
[ -S "/run/user/${UID}/gnupg/S.gpg-agent" ] && export GPG_AGENT_INFO="/run/user/${UID}/gnupg/S.gpg-agent"
|
|
|
|
[ -S "/run/user/${UID}/gnupg/S.gpg-agent.ssh" ] && export SSH_AUTH_SOCK="/run/user/${UID}/gnupg/S.gpg-agent.ssh"
|
2016-06-28 23:09:07 +02:00
|
|
|
pgrep -x -u "${USER}" gpg-agent >/dev/null 2>&1 && export SSH_AGENT_PID=$(pgrep -x -u "${USER}" gpg-agent)
|
2015-02-09 22:28:28 +01:00
|
|
|
|
2014-09-29 10:52:58 +02:00
|
|
|
# Aliases
|
2015-11-02 23:47:10 +01:00
|
|
|
[ -f "$HOME/.aliases" ] && . "$HOME/.aliases"
|
2016-10-22 19:20:16 +02:00
|
|
|
|
2019-04-26 14:12:45 +02:00
|
|
|
# Compose key
|
|
|
|
[ -f ~/.set_compose_key.sh ] && . ~/.set_compose_key.sh
|
|
|
|
|
2016-10-22 19:20:16 +02:00
|
|
|
# Pew
|
|
|
|
hash pew 2>/dev/null && source $(pew shell_config)
|
2017-02-12 15:21:30 +01:00
|
|
|
|
|
|
|
# Exit with a success status
|
|
|
|
true
|