Skip to content
Snippets Groups Projects
Verified Commit d7bf99e1 authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Move to zplug

parent 669146d4
No related branches found
No related tags found
No related merge requests found
......@@ -43,13 +43,21 @@ zstyle ':completion:*' verbose true
zstyle ':completion:*:*:kill:*:processes' list-colors '=(#b) #([0-9]#)*=0=01;31'
zstyle ':completion:*:kill:*' command 'ps -u $USER -o pid,%cpu,tty,cputime,cmd'
# Make zsh more fishy
[[ -e /usr/share/zsh-autosuggestions/zsh-autosuggestions.zsh ]] && source /usr/share/zsh-autosuggestions/zsh-autosuggestions.zsh
[[ -e /usr/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh ]] && source /usr/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
if [[ -e /usr/share/zplug/init.zsh ]]; then
source /usr/share/zplug/init.zsh
typeset -g POWERLEVEL9K_INSTANT_PROMPT=off
zplug "romkatv/powerlevel10k", as:theme, depth:1
zplug "zsh-users/zsh-syntax-highlighting", defer:2
zplug "zsh-users/zsh-autosuggestions"
zplug check || zplug install
zplug load
fi
# Aliases
[[ -e ~/.bash_aliases ]] && source ~/.bash_aliases
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
[[ -e /usr/local/share/powerlevel10k/powerlevel10k.zsh-theme ]] && source /usr/local/share/powerlevel10k/powerlevel10k.zsh-theme
# Configure p10k
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment