We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Great plugin! I think it would be better if there's Enable and Disable commands like in codeium.vim plugin, so it will be easy to turn on and off.
Enable
Disable
codeium.vim
The text was updated successfully, but these errors were encountered:
For toggling the virtual text completions I came up with following workarounds:
{ desc = "Codeium: Disable", function() require("codeium.config").options.virtual_text.manual = true end, }, { desc = "Codeium: Enable", function() require("codeium.config").options.virtual_text.manual = false end, }, { desc = "Codeium: Toggle", function() local virtual_text = require("codeium.config").options.virtual_text virtual_text.manual = not virtual_text.manual end, },
Sorry, something went wrong.
@dundalek good, but im using cmp + codeium completion 😅
cmp
codeium
No branches or pull requests
Great plugin!
I think it would be better if there's
Enable
andDisable
commands like incodeium.vim
plugin, so it will be easy to turn on and off.The text was updated successfully, but these errors were encountered: