From 5a023da1f8e028940d90b7128b5209b4cc43b2c7 Mon Sep 17 00:00:00 2001 From: Robby Russell Date: Tue, 8 Sep 2026 19:23:27 -0700 Subject: [PATCH] fix(opencode): show where to set the alias zstyle in .zshrc Co-Authored-By: Claude Opus 5 (1M context) --- plugins/opencode/README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/plugins/opencode/README.md b/plugins/opencode/README.md index fe88e7b36..4766720c7 100644 --- a/plugins/opencode/README.md +++ b/plugins/opencode/README.md @@ -64,10 +64,16 @@ even though those flags work when typed. Use `opencode --help` or | `opcc` | `opencode --continue` | Continue the last session | | `opcr` | `opencode run` | Run a prompt without opening the UI | -To keep completion but disable aliases, add this before sourcing Oh My Zsh: +To keep completion but skip the aliases, set this in your `.zshrc`, above the line +that sources Oh My Zsh: ```zsh +# ~/.zshrc zstyle ':omz:plugins:opencode' aliases no + +plugins=(... opencode) + +source $ZSH/oh-my-zsh.sh ``` ## Common workflows