You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey there, I'm interested in contributing to the development of the codeium plugin by adding toggle functionality via a keymap.
My plan is to use a global variable codium_enabled and modify the setup() function in init.lua to return if the codium_enabled global variable is set to false.
When the global variable is toggled to true, I would run vim.api.nvim_command('packadd codeium') or something similar to toggle a function to reload the plugin.
I'm hoping to get some guidance on how and if you would like that feature implemented.
Thanks for your help
The text was updated successfully, but these errors were encountered:
Sure, contributions are always welcome. It's extremely likely that packadd would require vimscript stuff, which this plugin doesn't use at all right now.
Hey there, I'm interested in contributing to the development of the codeium plugin by adding toggle functionality via a keymap.
My plan is to use a global variable
codium_enabled
and modify thesetup()
function ininit.lua
toreturn
if thecodium_enabled
global variable is set tofalse
.When the global variable is toggled to
true
, I would runvim.api.nvim_command('packadd codeium')
or something similar to toggle a function to reload the plugin.I'm hoping to get some guidance on how and if you would like that feature implemented.
Thanks for your help
The text was updated successfully, but these errors were encountered: