mirror of
https://github.com/kristoferssolo/SoloVim.git
synced 2025-10-21 20:10:41 +00:00
23 lines
679 B
Lua
23 lines
679 B
Lua
return {
|
|
"supermaven-inc/supermaven-nvim",
|
|
enabled = false,
|
|
opts = {
|
|
keymaps = {
|
|
accept_suggestion = "<Tab>",
|
|
clear_suggestion = "<C-]>",
|
|
accept_word = "<C-j>",
|
|
},
|
|
ignore_filetypes = {}, -- or { "cpp", }
|
|
color = {
|
|
suggestion_color = "#ffffff",
|
|
cterm = 244,
|
|
},
|
|
log_level = "info", -- set to "off" to disable logging completely
|
|
disable_inline_completion = true, -- disables inline completion for use with cmp
|
|
disable_keymaps = true, -- disables built in keymaps for more manual control
|
|
condition = function()
|
|
return false
|
|
end, -- condition to check for stopping supermaven, `true` means to stop supermaven when the condition is true.
|
|
},
|
|
}
|