From ba008cd8d0d99994f2d468fc4939e6928871412c Mon Sep 17 00:00:00 2001 From: Daylin Morgan Date: Mon, 8 May 2023 10:46:40 -0500 Subject: [PATCH] change name to zplugins --- .../zsh/{dot_zsh_plugins.txt => dot_zplugins} | 0 home/private_dot_config/zsh/dot_zshrc | 36 ++++--------------- 2 files changed, 6 insertions(+), 30 deletions(-) rename home/private_dot_config/zsh/{dot_zsh_plugins.txt => dot_zplugins} (100%) diff --git a/home/private_dot_config/zsh/dot_zsh_plugins.txt b/home/private_dot_config/zsh/dot_zplugins similarity index 100% rename from home/private_dot_config/zsh/dot_zsh_plugins.txt rename to home/private_dot_config/zsh/dot_zplugins diff --git a/home/private_dot_config/zsh/dot_zshrc b/home/private_dot_config/zsh/dot_zshrc index 715cc6e..d74fb4d 100644 --- a/home/private_dot_config/zsh/dot_zshrc +++ b/home/private_dot_config/zsh/dot_zshrc @@ -1,27 +1,11 @@ #!/usr/bin/env zsh -# -# .zshrc - Zsh file loaded on interactive shell sessions. -# - -# -# Profiling -# # Load zprof first if we need to profile. [[ ${ZPROFRC:-0} -eq 0 ]] || zmodload zsh/zprof alias zprofrc="ZPROFRC=1 zsh" -# -# Options -# - -# Set general Zsh options needed for config. setopt extended_glob -# -# Lazy-load functions -# - # Autoload functions directory and its subdirs. for funcdir in $ZDOTDIR/functions $ZDOTDIR/functions/*(N/); do fpath=($funcdir $fpath) @@ -29,33 +13,25 @@ for funcdir in $ZDOTDIR/functions $ZDOTDIR/functions/*(N/); do done unset funcdir -# -# Pre-antidote -# - # Be sure to set any supplemental completions directories before compinit is run. fpath=(${ZDOTDIR}/completions(-/FN) $fpath) -# -# antidote -# - [[ -d ${ZDOTDIR:-~}/.antidote ]] || git clone https://github.com/mattmc3/antidote ${ZDOTDIR:-~}/.antidote # Set the name of the static .zsh plugins file antidote will generate. -zsh_plugins=${ZDOTDIR:-~}/.zsh_plugins.zsh +zsh_plugins=${ZDOTDIR:-~}/.zplugins.zsh -# Ensure you have a .zsh_plugins.txt file where you can add plugins. -[[ -f ${zsh_plugins:r}.txt ]] || touch ${zsh_plugins:r}.txt +# Ensure you have a .zplugins file where you can add plugins. +[[ -f ${zsh_plugins:r} ]] || touch ${zsh_plugins:r} # Lazy-load antidote. fpath+=(${ZDOTDIR:-~}/.antidote/functions) autoload -Uz $fpath[-1]/antidote -# Generate static file in a subshell when .zsh_plugins.txt is updated. -if [[ ! $zsh_plugins -nt ${zsh_plugins:r}.txt ]]; then - (antidote bundle <${zsh_plugins:r}.txt >|$zsh_plugins) +# Generate static file in a subshell when .zplugins is updated. +if [[ ! $zsh_plugins -nt ${zsh_plugins:r} ]]; then + (antidote bundle <${zsh_plugins:r} >|$zsh_plugins) fi # Source your static plugins file.