summaryrefslogtreecommitdiffstats
path: root/.claude/lsp-marketplace/.claude-plugin/marketplace.json
Commit message (Collapse)AuthorAgeFilesLines
* misc(claude): remove custom lua_ls pluginThomas Vanbesien9 days1-13/+0
| | | | | | | It was there just so that the LSP doesn't use the current directory (where Claude Code runs) as the working directory (which is annoying since the working tree is $HOME and I don't want to litter it with .luarc.json kind of files).
* fix: root Claude Code lua_ls at ~/.config/nvimThomas Vanbesien2026-05-191-0/+13
- lua-lsp rooted lua_ls at $HOME: ignored .luarc.json, flooded 'Undefined global vim', no IntelliSense on the nvim config. - New local marketplace/plugin lua-lsp-local@local-lsp: .lsp.json sets workspaceFolder=~/.config/nvim, Neovim runtime as workspace.library, diagnostics.libraryFiles=Disable. - Disable official lua-lsp (enabledPlugins) so one server owns .lua. - Verified by probe: rootUri now file:///home/tvanbesi/.config/nvim, flood gone. - Annotate the intentional open_floating_preview monkey-patch (clears the now-correct duplicate-set-field). - README: validate/add/install/disable repro + plugin-update workflow.