Air 2026-07-05 - #91
Merged
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This PR updates the dotfiles/tooling setup to improve Godot (GDScript) and C# editor support, refreshes Pi agent configuration, and switches Neovim chat tooling from CodeCompanion to CopilotChat.
Changes:
- Add Godot/GDScript tooling across uv (gdtoolkit), Tree-sitter parsers, linting, formatting, and an editor alias.
- Add C# tooling via dotnet global tools and Neovim LSP/formatting integration.
- Update Pi settings/guardrails and replace Neovim CodeCompanion integration with CopilotChat (including lockfile updates).
Reviewed changes
Copilot reviewed 19 out of 19 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| scripts/setup-uv.sh | Installs gdtoolkit via uv tool install for Godot-related CLIs. |
| scripts/setup-pi.sh | Removes a Pi package installation entry. |
| scripts/setup-lsps.sh | Adds dotnet global tool installs for C# tooling. |
| scripts/aliases.sh | Adds godot alias pointing to godot-mono. |
| dotfiles/common/setup-path.sh | Ensures ~/.dotnet/tools is on PATH (fixing macOS path_helper tilde issue). |
| dotfiles/.gitignore | Ignores Claude .cc-writes directory. |
| config/pi/settings.json | Updates default model and trims package list; adds lastChangelogVersion. |
| config/pi/extensions/guardrails.json | Updates guardrails version, adds schema, and configures path access allowlist. |
| config/pi/AGENTS.md | Adds guidance for plan structure and formatting conventions. |
| config/nvim/lua/plugins/treesitter.lua | Registers fence-name mappings and installs additional parsers for C#/Godot. |
| config/nvim/lua/plugins/lsp.lua | Adds csharp-ls and a Godot editor-connected GDScript LSP config. |
| config/nvim/lua/plugins/linting.lua | Adds GDScript linting via gdlint. |
| config/nvim/lua/plugins/formatting.lua | Adds C# (csharpier) and GDScript (gdformat) formatter mappings. |
| config/nvim/lua/plugins/copilot.lua | Replaces CodeCompanion config with CopilotChat configuration. |
| config/nvim/lua/plugins/cmp.lua | Removes CodeCompanion-specific completion source configuration. |
| config/nvim/lua/config/keymap.lua | Updates Telescope mappings and switches chat keybinds to CopilotChat. |
| config/nvim/lua/config/codecompanion_spinner.lua | Deletes CodeCompanion spinner helper module. |
| config/nvim/lazy-lock.json | Updates plugin lock entries to reflect CopilotChat and removed plugins. |
| config/brew/Brewfile | Comments out one tap entry and adds gum; also resolves prior conflict-marker state. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+6
to
+7
| dotnet tool install --global csharp-ls | ||
| dotnet tool install --global csharpier |
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.
No description provided.