dotfiles/.zshrc

51 lines
1.3 KiB
Bash
Raw Normal View History

2014-09-29 10:52:58 +02:00
HISTFILE=~/.zsh_history
HISTSIZE=1000
SAVEHIST=1000
CLICOLOR=1
2014-10-23 16:32:32 +02:00
export EDITOR='emacs'
export PAGER='less'
2014-10-18 21:59:14 +02:00
export USER_NICKNAME="Rodolphe Breard"
2014-10-01 11:27:35 +02:00
setopt nobeep appendhistory histignoredups histignorespace autocd extendedglob nomatch notify correct_all
2014-09-29 10:52:58 +02:00
bindkey -e
bindkey "^[[3~" delete-char
bindkey "^[3;5~" delete-char
# Command completion
autoload -U compinit
compinit
# Prompt
if [ -f /usr/bin/liquidprompt ]; then
unset PROMPT_COMMAND
source /usr/bin/liquidprompt
elif [ -f "$HOME/liquidprompt/liquidprompt" ]; then
unset PROMPT_COMMAND
source "$HOME/liquidprompt/liquidprompt"
else
PS1="\[\033[01;31m\]\u\[\033[01;37m\]@\[\033[01;33m\]\h\[\033[01;31m\]->\[\033[00m\] "
#PS1='\u@\h-> '
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
source "/usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh"
fi
2014-09-29 10:52:58 +02:00
# Aliases
2014-10-01 11:37:09 +02:00
if [ "$(uname -s | tr '[:upper:]' '[:lower:]')" = 'linux' ]; then
2014-09-29 10:52:58 +02:00
alias ls='ls --color=auto'
fi
alias ll='ls -lih'
alias la='ls -A'
alias l='ls -lihA'
alias sudo='sudo '
alias grep='grep -n --color=auto'
alias j='jobs'
alias ne='emacs'
alias df='df -h'
alias top='TERM=screen-256color htop'
alias weechat='TERM=screen-256color weechat'
alias lock='xscreensaver-command --lock'