diff --git a/.config/opencode/opencode.json b/.config/opencode/opencode.json new file mode 100644 index 0000000..42f0650 --- /dev/null +++ b/.config/opencode/opencode.json @@ -0,0 +1,7 @@ +{ + "$schema": "https://opencode.ai/config.json", + // Theme configuration + "theme": "system", + "model": "qwen-3-coder-480b", + "autoupdate": true, +} diff --git a/install b/install index a876265..0b9a749 100644 --- a/install +++ b/install @@ -11,7 +11,7 @@ xargs brew install < brewlist xargs brew install --cask < casklist # Sym Link Configs -folders=("alacritty" "nvim" "tmux" "zsh" "git") +folders=("nvim" "tmux" "zsh" "git" ".config") for folder in "${folders[@]}" do diff --git a/zsh/.zshrc b/zsh/.zshrc index 465c082..554aef0 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -54,3 +54,9 @@ source $(brew --prefix)/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zs # opencode export PATH=/Users/caleb/.opencode/bin:$PATH + +# The following lines have been added by Docker Desktop to enable Docker CLI completions. +fpath=(/Users/caleb/.docker/completions $fpath) +autoload -Uz compinit +compinit +# End of Docker CLI completions