30 lines
681 B
Bash
30 lines
681 B
Bash
# source antidote
|
|
source ${ZDOTDIR:-~}/.antidote/antidote.zsh
|
|
|
|
# initialize plugins statically with ${ZDOTDIR:-~}/.zsh_plugins.txt
|
|
antidote load
|
|
|
|
# Aliases
|
|
source ~/.zshconfig/aliases
|
|
|
|
autoload -Uz promptinit && promptinit && prompt powerlevel10k
|
|
#autoload -Uz promptinit && promptinit && prompt powerlevel10k
|
|
zstyle ':completion:*' menu select
|
|
|
|
### Settings fuer History
|
|
HISTFILE=~/.zsh_history
|
|
HISTSIZE=10000
|
|
SAVEHIST=10000
|
|
setopt appendhistory
|
|
|
|
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
|
|
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
|
|
|
|
if command -v pyenv 1>/dev/null 2>&1; then
|
|
eval "$(pyenv init -)"
|
|
fi
|
|
|
|
## Update scripts
|
|
cd ~/.zshconfig/ && git pull
|
|
cd
|