68 lines
1.7 KiB
Bash
68 lines
1.7 KiB
Bash
source ~/.zplug/init.zsh
|
|
|
|
export ZSH_TMUX_AUTOSTART=true
|
|
export ZSH_TMUX_AUTOSTART_ONCE=true
|
|
export ZSH_TMUX_AUTOCONNECT=true
|
|
|
|
zplug "zplug/zplug", hook-build:'zplug --self-manage'
|
|
|
|
|
|
zplug "QiaoHao9/ys", as:theme
|
|
zplug "zsh-users/zsh-syntax-highlighting"
|
|
zplug "zsh-users/zsh-autosuggestions"
|
|
zplug "zsh-users/zsh-completions"
|
|
|
|
zplug "zsh-users/zsh-history-substring-search"
|
|
zplug "mattbangert/kubectl-zsh-plugin"
|
|
zplug "greymd/docker-zsh-completion"
|
|
zplug "pkulev/zsh-rustup-completion"
|
|
zplug "g-plane/zsh-yarn-autocompletions", hook-build:"./zplug.zsh", defer:2
|
|
|
|
zplug "plugins/tmux", from:oh-my-zsh
|
|
zplug "plugins/git", from:oh-my-zsh
|
|
zplug "plugins/docker", from:oh-my-zsh
|
|
zplug "plugins/composer", from:oh-my-zsh
|
|
zplug "plugins/extract", from:oh-my-zsh
|
|
zplug "lib/completion", from:oh-my-zsh
|
|
zplug "plugins/sudo", from:oh-my-zsh
|
|
zplug "b4b4r07/enhancd", use:init.sh
|
|
|
|
zplug "$HOME/.zsh", from:local, use:"*.zsh"
|
|
|
|
# Install plugins if there are plugins that have not been installed
|
|
if ! zplug check --verbose; then
|
|
printf "Install? [y/N]: "
|
|
if read -q; then
|
|
echo; zplug install
|
|
fi
|
|
fi
|
|
|
|
# Then, source plugins and add commands to $PATH
|
|
zplug load
|
|
|
|
|
|
# `$HOME/bin/start-agent`
|
|
SSH_ENV="$HOME/.ssh/agent-environment"
|
|
|
|
function start_agent {
|
|
echo "Initialising new SSH agent..."
|
|
/usr/bin/ssh-agent | sed 's/^echo/#echo/' > "${SSH_ENV}"
|
|
echo succeeded
|
|
chmod 600 "${SSH_ENV}"
|
|
. "${SSH_ENV}" > /dev/null
|
|
/usr/bin/ssh-add;
|
|
}
|
|
|
|
# Source SSH settings, if applicable
|
|
|
|
if [ -f "${SSH_ENV}" ]; then
|
|
. "${SSH_ENV}" > /dev/null
|
|
#ps ${SSH_AGENT_PID} doesn't work under cywgin
|
|
ps -ef | grep ${SSH_AGENT_PID} | grep ssh-agent$ > /dev/null || {
|
|
start_agent;
|
|
}
|
|
else
|
|
start_agent;
|
|
fi
|
|
|