dotfiles/.config/zsh/.zshrc

59 lines
1.7 KiB
Bash
Raw Normal View History

2020-10-01 22:07:46 +02:00
setopt no_beep inc_append_history hist_ignore_dups hist_ignore_space extended_glob no_match 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
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 -d "$COMPDIR/.zcompdump"
2014-09-29 10:52:58 +02:00
# 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"
2022-08-02 17:28:05 +02:00
elif [ -f "/usr/share/liquidprompt/liquidprompt" ]; then
unset PROMPT_COMMAND
. "/usr/share/liquidprompt/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
2014-09-29 10:52:58 +02:00
# Aliases
[ -f "$MY_CONFIG/.aliases" ] && . "$MY_CONFIG/.aliases"
2016-10-22 19:20:16 +02:00
2021-01-14 11:49:31 +01:00
# Proxy settings
[ -f "$HOME/.proxy" ] && . "$HOME/.proxy"
2020-10-01 22:30:47 +02:00
# 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
2024-06-30 13:48:08 +02:00
# zoxide
hash zoxide 2>/dev/null && eval "$(zoxide init zsh)"
2020-05-03 20:25:31 +02:00
# 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