-
-
Notifications
You must be signed in to change notification settings - Fork 268
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(copilot): add integration (#803)
* feat: add copilot.vim support * chore: alphabetize the field types * feat: switch to overlay0 for the virtual suggestion text * docs: Add `copilot_vim` to the integrations section * feat: make copilot vim disabled by default
- Loading branch information
1 parent
637d99e
commit b71eacb
Showing
3 changed files
with
26 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
local M = {} | ||
|
||
function M.get() | ||
return { | ||
CopilotSuggestion = { fg = C.overlay0 }, | ||
CopilotAnnotation = { fg = C.blue }, | ||
} | ||
end | ||
|
||
return M |
This file contains 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