dotfiles/.zshrc

135 lines
3.7 KiB
Bash
Raw Normal View History

setopt nobeep appendhistory histignoredups histignorespace extendedglob nomatch notify correct_all
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
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"
[[ ":$PATH:" == *":$HOME/bin:"* ]] || export PATH="$HOME/bin:$PATH"
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
# GPG Agent
export GPG_TTY=$(tty)
unset SSH_AGENT_PID
if [ "${gnupg_SSH_AUTH_SOCK_by:-0}" -ne $$ ]; then
export SSH_AUTH_SOCK="${HOME}/.gnupg/S.gpg-agent.ssh"
fi
2014-09-29 10:52:58 +02:00
# Aliases
2015-02-13 18:31:43 +01:00
[ "$(uname -s | tr '[:upper:]' '[:lower:]')" = 'linux' ] && alias ls='ls --color=auto'
2015-02-09 20:07:40 +01:00
alias ll='ls -lihF'
2014-09-29 10:52:58 +02:00
alias la='ls -A'
2015-02-09 20:07:40 +01:00
alias l='ll -A'
2014-09-29 10:52:58 +02:00
2015-05-16 17:33:39 +02:00
alias t='tree'
2014-09-29 10:52:58 +02:00
alias sudo='sudo '
alias grep='grep -n --color=auto'
alias j='jobs'
alias df='df -h'
2015-08-06 20:12:10 +02:00
alias du='du -ch'
2015-10-20 13:37:25 +02:00
hash htop 2>/dev/null && alias top='htop'
hash xscreensaver-command 2>/dev/null && alias lock='xscreensaver-command --lock'
2015-02-21 16:23:04 +01:00
hash sqlmap 2>/dev/null && alias sqlmap='sqlmap --user-agent="Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"'
hash sqlmap 2>/dev/null && alias sqlmap-tor='sqlmap --tor --tor-type=SOCKS5'
hash steam 2>/dev/null && alias steam='find ~/.steam/root/ \( -name "libgcc_s.so*" -o -name "libstdc++.so*" -o -name "libxcb.so*" \) -print -delete; steam'
2015-02-21 16:14:22 +01:00
if hash chromium 2>/dev/null; then
chromium-tor() {
killall chromium
chromium --incognito --proxy-server="socks://localhost:9050"
}
fi
2015-03-16 11:40:03 +01:00
2015-03-18 00:46:14 +01:00
if hash dig 2>/dev/null; then
2015-10-20 13:44:39 +02:00
istheinternetonfire() {
txt=$(dig +short txt istheinternetonfire.com)
if hash cowsay 2>/dev/null; then
echo "$txt" | cowsay
else
echo "$txt"
fi
}
2015-03-18 00:46:14 +01:00
fi
clean()
{
clean_dir()
{
local dir="$1"
if [ -d "$dir" ]; then
find "$dir" -name "*~" -print -delete
find "$dir" -name ".*~" -print -delete
find "$dir" -name "#*#" -print -delete
else
echo "$dir: not a directory" >&2
fi
}
if [ $# -ne 0 ]; then
for dir in "$@"; do
clean_dir "$dir"
done
else
clean_dir "./"
fi
unfunction clean_dir
}
if hash rankmirrors 2>/dev/null; then
update_mirrorlist()
{
local pacman_dir="/etc/pacman.d"
local mirror_file="$pacman_dir/mirrorlist"
local mirror_pacnew="$mirror_file.pacnew"
local mirror_orig="$mirror_file.orig"
local mirror_tmp="/tmp/mirrorlist.tmp"
if [ -f "$mirror_pacnew" ]; then
echo "Using $mirror_file"
mv "$mirror_pacnew" "$mirror_orig"
fi
if [ ! -f "$mirror_orig" ]; then
echo "$mirror_orig: file not found" >&2
exit 1
fi
/usr/bin/grep 'Server' "$mirror_orig" | tr -d "#" > "$mirror_tmp"
rankmirrors -n 6 "$mirror_tmp" > "$mirror_file"
rm -f "$mirror_tmp"
pacman -Syy
}
fi