integrat cop[ilot code suggestions to mzansivim #25

Merged
yaso_meth merged 1 commits from copilot-integration into main 2026-04-24 13:06:18 +00:00
3 changed files with 14 additions and 0 deletions

View File

@@ -73,6 +73,15 @@ The **Leader Key** is set to `Space`.
| **Toggle Logs** | `:FLogs` | Open or close the Flutter Dev Log split. |
| **Clear Logs** | `:FLogsClear` | Clear the current Flutter Dev Log buffer. |
### Copilot Code Completion
| Action | Keybinding | Description |
| :--- | :--- | :--- |
| **:Setup Copilot** | `:Copilot setup` | Authenticate and enable GitHub Copilot (disable cmd popups before proceeding with setup). |
| **:Enable Copilot** | `:Copilot enable` | Enable GitHub Copilot after :Copilot disable. |
| **:Disable Copilot** | `:Copilot disable` | Disable GitHub Copilot inline suggestions. |
| **:Check Status of Copilot** | `:Copilot status` | Check if GitHub Copilot is operational and report on any issues. |
| **:Signout of Copilot** | `:Copilot signout` | Sign out of GitHub Copilot. |
### Diagnostics (Errors & Warnings)
| Action | Keybinding | Description |
| :--- | :--- | :--- |

View File

@@ -6,6 +6,7 @@
"cmp-nvim-lsp": { "branch": "main", "commit": "cbc7b02bb99fae35cb42f514762b89b5126651ef" },
"cmp-path": { "branch": "main", "commit": "c642487086dbd9a93160e1679a1327be111cbc25" },
"cmp_luasnip": { "branch": "master", "commit": "98d9cb5c2c38532bd9bdb481067b20fea8f32e90" },
"copilot.vim": { "branch": "release", "commit": "a12fd5672110c8aa7e3c8419e28c96943ca179be" },
"dashboard-nvim": { "branch": "master", "commit": "f787e3462c2ee2b6117b17c1aa4ddf66cb6f57fe" },
"dressing.nvim": { "branch": "master", "commit": "2d7c2db2507fa3c4956142ee607431ddb2828639" },
"flutter-tools.nvim": { "branch": "main", "commit": "677cc07c16e8b89999108d2ebeefcfc5f539b73c" },

4
lua/plugins/copilot.lua Normal file
View File

@@ -0,0 +1,4 @@
return {
"github/copilot.vim",
lazy = false,
}