Cleanup more copilot related things - #101
Conversation
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (5)
💤 Files with no reviewable changes (3)
🚧 Files skipped from review as they are similar to previous changes (1)
WalkthroughThe configuration replaces the global Copilot language-server package with Estimated code review effort: 2 (Simple) | ~10 minutes Possibly related PRs
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches📝 Generate docstrings
🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 494564d60d
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| end | ||
|
|
||
| set -l packages bat delta eza fd nvim rg copilot-language-server | ||
| set -l packages bat delta eza fd nvim rg |
There was a problem hiding this comment.
Disable Sidekick NES when dropping Copilot
When this base environment no longer installs copilot-language-server, the Neovim config still loads folke/sidekick.nvim with default nes.enabled and a <Tab> mapping that calls require("sidekick").nes_jump_or_apply() in xdg_config/nvim/lua/plugins/llm.lua. Sidekick’s own requirements state that NES needs the official Copilot language server enabled with vim.lsp.enable (https://github.com/folke/sidekick.nvim#requirements), so fresh installs now keep an enabled-but-nonfunctional NES feature and failing :checkhealth sidekick; if Copilot is intentionally removed, set nes = { enabled = false } or remove the NES keymap too.
Useful? React with 👍 / 👎.
Summary by CodeRabbit
New Features
Changes
nesand adjusted its keybindings (removed some mappings).