Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@ Before submitting changes:
3. **Lua formatting fails:** Run `nix develop` first, check `.editorconfig` compliance
4. **Plugin not loading:** Check `optionalPlugins` set - `false` = mandatory, `true` = optional
5. **LSP not working:** LSP binaries added to PATH in `nvim.nix`, register with health system
6. **Schema support for JSON/YAML/TOML:** LSPs for jsonls, yamlls, taplo are configured with SchemaStore for schema validation via `$schema` keys. Ensure files have proper schemas for completions and diagnostics.
Copy link

Copilot AI Jan 15, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The statement 'LSPs for jsonls, yamlls, taplo are configured with SchemaStore' is inaccurate for taplo. Only jsonls and yamlls use SchemaStore integration. Taplo has schema support enabled but uses its own schema resolution mechanism via the associations field.

Suggested change
6. **Schema support for JSON/YAML/TOML:** LSPs for jsonls, yamlls, taplo are configured with SchemaStore for schema validation via `$schema` keys. Ensure files have proper schemas for completions and diagnostics.
6. **Schema support for JSON/YAML/TOML:** `jsonls` and `yamlls` use SchemaStore for schema validation via `$schema` keys, while `taplo` uses its own schema resolution via `associations`. Ensure files have proper schemas configured for completions and diagnostics.

Copilot uses AI. Check for mistakes.

## Additional Notes

Expand Down
Loading