58 lines
1.7 KiB
Bash
58 lines
1.7 KiB
Bash
setopt no_beep inc_append_history hist_ignore_dups hist_ignore_space extended_glob no_match notify
|
|
bindkey -e
|
|
bindkey "^[[3~" delete-char
|
|
bindkey "^[3;5~" delete-char
|
|
|
|
# Colors
|
|
[ "$CLICOLOR" -ne 0 ] && hash dircolors 2>/dev/null && eval $(dircolors -b)
|
|
|
|
# Command completion
|
|
autoload -U compinit
|
|
compinit -d "$COMPDIR/.zcompdump"
|
|
|
|
# Prompt
|
|
if [ -f "/usr/bin/liquidprompt" ]; then
|
|
unset PROMPT_COMMAND
|
|
. "/usr/bin/liquidprompt"
|
|
elif [ -f "/usr/share/liquidprompt/liquidprompt" ]; then
|
|
unset PROMPT_COMMAND
|
|
. "/usr/share/liquidprompt/liquidprompt"
|
|
elif [ -f "$HOME/liquidprompt/liquidprompt" ]; then
|
|
unset PROMPT_COMMAND
|
|
. "$HOME/liquidprompt/liquidprompt"
|
|
elif [ "$CLICOLOR" -ne 0 ]; then
|
|
autoload -U colors && colors
|
|
PS1="%{$fg[red]%}%n%{$reset_color%}@%{$fg[yellow]%}%M%{$fg[red]%}->%{$reset_color%} "
|
|
else
|
|
PS1='%n@%M-> '
|
|
fi
|
|
|
|
# Syntax-highlighting
|
|
if [ -f "/usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh" ]; then
|
|
. "/usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh"
|
|
fi
|
|
|
|
# Aliases
|
|
[ -f "$MY_CONFIG/.aliases" ] && . "$MY_CONFIG/.aliases"
|
|
|
|
# Proxy settings
|
|
[ -f "$HOME/.proxy" ] && . "$HOME/.proxy"
|
|
|
|
# skim
|
|
[ -f "/usr/share/skim/key-bindings.zsh" ] && . /usr/share/skim/key-bindings.zsh
|
|
[ -f "/usr/share/skim/completion.zsh" ] && . /usr/share/skim/completion.zsh
|
|
|
|
# zoxide
|
|
hash zoxide 2>/dev/null && eval "$(zoxide init zsh)"
|
|
|
|
# Java
|
|
#
|
|
# Use `archlinux-java` to change the default Java environment.
|
|
# List directories in `/usr/lib/jvm/` to see all possible values.
|
|
#
|
|
# Example:
|
|
# sudo archlinux-java set java-13-openjdk
|
|
export JAVA_HOME="/usr/lib/jvm/default"
|
|
|
|
# Exit with a success status
|
|
true
|