nvim/lua/custom/plugins/supermaven.lua
Simon Lasbrugnas 977f625e5d
feat(supermaven): add on-demand autocompletion
Removes inline text suggestion and binds <C-t> to autocomplete. Under
the hood it activates inline text suggestion, accept the suggestion and
then disable it again. It removes the noise of AI text suggestions
while allowing me to take advantage of it when it's useful.
2025-06-25 17:06:51 +02:00

6 lines
103 B
Lua

return {
"supermaven-inc/supermaven-nvim",
config = function()
require("custom.supermaven")
end
}