From 84387724bc447327754c7d4c8078fd9c383112b8 Mon Sep 17 00:00:00 2001 From: Jens Luedicke Date: Wed, 15 Oct 2025 17:11:35 +0200 Subject: [PATCH] Fix: Exclude Oh My Zsh test files from being sourced MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Explicitly list Oh My Zsh lib files to load, excluding tests/cli.test.zsh - Prevents test output from being displayed when sourcing zshrc - All functionality remains intact 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- sheldon/plugins.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sheldon/plugins.toml b/sheldon/plugins.toml index c68697c..7c211a7 100644 --- a/sheldon/plugins.toml +++ b/sheldon/plugins.toml @@ -14,10 +14,10 @@ local = "~/.dotfiles/zsh" use = ["spaceship.zsh"] apply = ["source"] -# Oh My Zsh library - load all lib files +# Oh My Zsh library - load all lib files except tests [plugins.oh-my-zsh-lib] local = "~/.dotfiles/zsh/oh-my-zsh/lib" -use = ["*.zsh"] +use = ["{async_prompt,bzr,clipboard,cli,compfix,completion,correction,diagnostics,directories,functions,git,grep,history,key-bindings,misc,nvm,prompt_info_functions,spectrum,termsupport,theme-and-appearance,vcs_info}.zsh"] apply = ["source"] # Oh My Zsh plugins