24 lines
704 B
Bash
Executable File
24 lines
704 B
Bash
Executable File
# zplug - manage plugins
|
|
source /usr/share/zplug/init.zsh
|
|
zplug "zsh-users/zsh-syntax-highlighting"
|
|
zplug "zsh-users/zsh-autosuggestions"
|
|
zplug "zsh-users/zsh-completions"
|
|
zplug "plugins/per-directory-history", from:oh-my-zsh
|
|
zplug "plugins/history-substring-search", from:oh-my-zsh
|
|
zplug "plugins/common-aliases", from:oh-my-zsh
|
|
zplug "plugins/nmap", from:oh-my-zsh
|
|
zplug "plugins/taskwarrior", from:oh-my-zsh
|
|
|
|
HISTORY_START_WITH_GLOBAL=true
|
|
|
|
zplug "romkatv/powerlevel10k", use:powerlevel10k.zsh-theme
|
|
|
|
# zplug - install/load new plugins when zsh is started or reloaded
|
|
if ! zplug check --verbose; then
|
|
printf "Install? [y/N]: "
|
|
if read -q; then
|
|
echo; zplug install
|
|
fi
|
|
fi
|
|
zplug load
|