Files
dotfiles/zsh/.zshrc

100 lines
3.1 KiB
Bash
Raw Normal View History

export PATH="$HOME/.local/bin:$PATH"
2023-10-31 12:34:17 +01:00
[[ -z $SSH_AUTH_SOCK ]] || export FORWARD_SOCK=$SSH_AUTH_SOCK
2021-10-23 17:41:05 +02:00
[[ -f ~/.zsh/.powerline_config ]] && source ~/.zsh/.powerline_config
[[ -f ~/.zsh/.user_config ]] && source ~/.zsh/.user_config
[[ -f ~/.zsh/.virtual_env_config.zsh ]] && source ~/.zsh/.virtual_env_config.zsh
2021-01-11 10:35:01 +01:00
[[ -f ~/.zsh/.local_config ]] && source ~/.zsh/.local_config
2023-04-14 09:21:55 +02:00
[[ -f ~/.zsh/.os_config.zsh ]] && source ~/.zsh/.os_config.zsh
2018-07-29 16:26:51 +02:00
2025-01-08 09:49:46 +01:00
if [[ -f ~/.zsh/.shared_config ]] && [[ "$SUDO_USER" != "fabian" ]] ; then
shared_config=1
else
shared_config=0
fi
2022-09-06 13:25:54 +02:00
# Load Antidote
2022-10-06 16:36:52 +02:00
mkdir -p ${ZDOTDIR:-~}/.cache/zsh
2022-09-27 13:18:21 +02:00
static_file=${ZDOTDIR:-~}/.cache/zsh/.zsh_plugins.zsh
2025-01-08 09:49:46 +01:00
if [ $shared_config -eq 0 ]; then
2024-10-14 16:02:14 +02:00
plugins_txt=${ZDOTDIR:-~}/.zsh/.zsh_plugins.txt
# Vi mode
bindkey -v
VI_MODE_SET_CURSOR=true
2024-10-14 16:02:14 +02:00
else
plugins_txt=${ZDOTDIR:-~}/.zsh/.zsh_plugins_shared.txt
2025-01-08 10:39:28 +01:00
static_file=${ZDOTDIR:-~}/.cache/zsh/.zsh_shared_plugins.zsh
2024-10-14 16:02:14 +02:00
fi
2022-09-06 10:50:17 +02:00
# clone antidote if necessary
if ! [[ -e ${ZDOTDIR:-~}/.antidote ]]; then
git clone https://github.com/mattmc3/antidote.git ${ZDOTDIR:-~}/.antidote
fi
2024-07-19 13:25:17 +02:00
#zstyle ':omz:plugins:docker' legacy-completion yes
zstyle ':completion:*:ssh:*' hosts off
2022-09-06 10:50:17 +02:00
# source antidote and load plugins from `${ZDOTDIR:-~}/.zsh_plugins.txt`
source ${ZDOTDIR:-~}/.antidote/antidote.zsh
2022-09-06 13:25:54 +02:00
antidote load ${plugins_txt} ${static_file}
2023-10-31 12:34:17 +01:00
export SSH_REAL_SOCK=$SSH_AUTH_SOCK
[[ -z $FORWARD_SOCK ]] || export SSH_AUTH_SOCK=$FORWARD_SOCK
2022-09-06 13:25:54 +02:00
setopt interactivecomments
setopt HIST_IGNORE_SPACE
# Clear screen by ctrl+q
bindkey '^q' clear-screen
2019-08-22 15:27:20 +02:00
2018-07-29 16:26:51 +02:00
alias vim=nvim
2019-08-22 15:27:20 +02:00
alias sudo='sudo '
2023-07-18 14:54:43 +02:00
alias cgrep="grep --color=always"
2018-07-29 16:26:51 +02:00
export EDITOR='nvim'
2019-02-28 13:36:24 +01:00
2024-03-26 14:10:18 +01:00
# Allow access to all libvirt vms
export LIBVIRT_DEFAULT_URI="qemu:///system"
2019-08-22 15:27:20 +02:00
alias ls="ls --color=always"
delzip() {
unzip -Z -1 "$@" | xargs -I{} rm -rf {}
}
# mitmproxy
export MITMPROXY_SSLKEYLOGFILE="~/.mitmproxy/sslkeylogfile.txt"
2021-10-27 14:56:12 +02:00
[[ -f ~/.zsh/.mac_config ]] && source ~/.zsh/.mac_config
# Workaround for async issues https://github.com/romkatv/powerlevel10k/issues/1554
unset ZSH_AUTOSUGGEST_USE_ASYNC
# Powerlevel 10k
# Remove padding on right side
ZLE_RPROMPT_INDENT=0
# To customize prompt, run `p10k configure` or edit ~/dotfiles/zsh/.p10k.zsh.
2024-03-19 15:13:38 +01:00
function load_p10k() {
2025-01-08 09:49:46 +01:00
if zmodload zsh/terminfo && (( terminfo[colors] >= 256 )) && [ $shared_config -eq 0 ]; then
2024-10-13 08:41:25 +02:00
[[ ! -f ~/dotfiles/zsh/.p10k.zsh ]] || source ~/dotfiles/zsh/.p10k.zsh
else
[[ ! -f ~/dotfiles/zsh/.p10k_shared.zsh ]] || source ~/dotfiles/zsh/.p10k_shared.zsh
fi
2024-03-19 15:13:38 +01:00
}
load_p10k
2024-10-14 15:50:37 +02:00
#
# This speeds up pasting w/ autosuggest
# https://github.com/zsh-users/zsh-autosuggestions/issues/238
pasteinit() {
OLD_SELF_INSERT=${${(s.:.)widgets[self-insert]}[2,3]}
zle -N self-insert url-quote-magic # I wonder if you'd need `.url-quote-magic`?
}
pastefinish() {
zle -N self-insert $OLD_SELF_INSERT
}
zstyle :bracketed-paste-magic paste-init pasteinit
zstyle :bracketed-paste-magic paste-finish pastefinish
2024-10-14 15:54:06 +02:00
# https://github.com/zsh-users/zsh-autosuggestions/issues/351
ZSH_AUTOSUGGEST_CLEAR_WIDGETS+=(bracketed-paste)
2024-10-14 15:50:37 +02:00
2024-03-19 15:13:38 +01:00
export LANG="en_US.UTF-8"
export LC_CTYPE="en_US.UTF-8"
export TIME_STYLE="long-iso"