Fix nvim-dap-ruby: fetch from GitHub instead of missing local path#2
Open
cpb wants to merge 110 commits intotjwallace:masterfrom
Open
Fix nvim-dap-ruby: fetch from GitHub instead of missing local path#2cpb wants to merge 110 commits intotjwallace:masterfrom
cpb wants to merge 110 commits intotjwallace:masterfrom
Conversation
updates style configuration to tmux 2.9.x
…f-lua Add async LSP references picker
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Remove cpb/neotest-rspec fork dependency, use table literal instead of tbl_flatten for minitest cmd, strip debug logging. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Source ~/.zshrc-work for env vars like JAVA_HOME that are machine-specific and shouldn't live in shared dotfiles. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Remove openjdk PATH (now in zshrc-work), add copyeach function for interactive clipboard line copying. Add qlty example to zshrc-work template. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Drop 8 unused vim color files, 3 color submodules (molokai, solarized, tomorrow-theme), dead neovim example.lua, and stale vimrc color comments. Only Tomorrow-Night-Eighties (vim) and base16-tomorrow-night-eighties (neovim) remain as the active schemes. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
The plugin was configured as a local dev plugin pointing to `/Users/cpb/oss/nvim-dap-ruby`, which does not exist, causing Lazy.nvim to error on startup. Remove `dev = true` and `dir` so Lazy fetches the plugin from GitHub (`cpb/nvim-dap-ruby`) instead. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
cpb/nvim-dap-rubyLazy.nvim plugin was configured withdev = trueanddir = "/Users/cpb/oss/nvim-dap-ruby", pointing to a local path that does not exist.Local plugin does not exist at /Users/cpb/oss/nvim-dap-ruby.dev = trueand thediroverride so Lazy fetches the plugin from GitHub (cpb/nvim-dap-ruby) as a normal remote plugin.Test plan
nvim-dap-ruby.:Lazyand verifynvim-dap-rubyinstalls/loads successfully from GitHub.🤖 Generated with Claude Code