remove plugins that spew to stdout

This commit is contained in:
KemoNine 2022-05-19 23:05:59 -04:00
parent 66d2daa0d7
commit 0d6b43d072

6
zshrc
View file

@ -11,13 +11,13 @@ source ~/.zplug/init.zsh
zplug "zplug/zplug", hook-build:"zplug --self-manage" zplug "zplug/zplug", hook-build:"zplug --self-manage"
zplug "romkatv/powerlevel10k", as:theme, depth:1 zplug "romkatv/powerlevel10k", as:theme, depth:1
zplug "popstas/zsh-command-time" #zplug "popstas/zsh-command-time"
zplug "zsh-users/zsh-syntax-highlighting", defer:2 zplug "zsh-users/zsh-syntax-highlighting", defer:2
zplug "ytakahashi/igit" zplug "ytakahashi/igit"
if [[ -n "${TMUX}" ]]; then if [[ -n "${TMUX}" ]]; then
zplug "mbenford/zsh-tmux-auto-title" zplug "mbenford/zsh-tmux-auto-title"
fi fi
zplug "MichaelAquilina/zsh-you-should-use" #zplug "MichaelAquilina/zsh-you-should-use"
zplug "junegunn/fzf", from:github, as:command, rename-to:fzf, hook-build:"./install --all" zplug "junegunn/fzf", from:github, as:command, rename-to:fzf, hook-build:"./install --all"
zplug "junegunn/fzf", use:"shell/*.zsh", defer:2 zplug "junegunn/fzf", use:"shell/*.zsh", defer:2
@ -59,7 +59,7 @@ setopt append_history
setopt share_history setopt share_history
# zsh plugin options # zsh plugin options
ZSH_COMMAND_TIME_MIN_SECONDS=10 #ZSH_COMMAND_TIME_MIN_SECONDS=10
if [[ -n "${TMUX}" ]]; then if [[ -n "${TMUX}" ]]; then
ZSH_TMUX_AUTO_TITLE_SHORT=true ZSH_TMUX_AUTO_TITLE_SHORT=true
ZSH_TMUX_AUTO_TITLE_IDLE_TEXT="%last" ZSH_TMUX_AUTO_TITLE_IDLE_TEXT="%last"