Files
zshconfig/zshrc
2022-02-02 09:49:38 +01:00

35 lines
739 B
Bash

# Aliases
source ~/.zshconfig/aliases
# Themes & Plugins
source ~/.antigen.zsh
antigen bundle agkozak/zsh-z
antigen theme romkatv/powerlevel10k
antigen bundle "MichaelAquilina/zsh-you-should-use"
antigen bundle zsh-users/zsh-syntax-highlighting
# Shit for OSX
if [ "$(uname)" != "Darwin" ]; then
antigen bundle brew
fi
antigen apply
autoload -U compinit && compinit
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