From f7fdc49174aa03c7f42c5e7c4f2ccb52cde29ed1 Mon Sep 17 00:00:00 2001 From: pika Date: Thu, 12 Sep 2024 20:11:18 +0200 Subject: [PATCH] addet debug variable --- .zshrc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.zshrc b/.zshrc index 657afdf..4d3aaac 100644 --- a/.zshrc +++ b/.zshrc @@ -82,7 +82,7 @@ _init (){ local zAutosg="$zconf/autosuggestions/zsh-autosuggestions.zsh" local zSynthl="$zconf/syntax-highlighting/zsh-syntax-highlighting.zsh" local zTruecolor="$zconf/custom/256color.zsh" - local zAutopairs="$zconf/autopairs/zsh-autopair.plugin.zsh" + local zAutopairs="$zconf/autopairs/autopair.zsh" local _pluginlist=( "$zAutosg" @@ -91,10 +91,14 @@ _init (){ "$zAutopairs" ) +DEBUG_PLUG="" + # ─< init plugis >──────────────────────────────────────────────────────────────────────── for zPlug in "${_pluginlist[@]}"; do [[ -f "$zPlug" ]] && . $zPlug + DEBUG_PLUG="$DEBUG_PLUG + plugin $zPlug loadet." done p_has() {