mirror of
https://github.com/harivansh-afk/nvim.git
synced 2026-04-15 12:03:52 +00:00
19 lines
436 B
Lua
19 lines
436 B
Lua
return {
|
|
"supermaven-inc/supermaven-nvim",
|
|
event = "InsertEnter",
|
|
opts = {
|
|
keymaps = {
|
|
accept_suggestion = "<Tab>",
|
|
clear_suggestion = "<C-]>",
|
|
accept_word = "<C-j>",
|
|
},
|
|
ignore_filetypes = { "gitcommit", "TelescopePrompt" },
|
|
color = {
|
|
suggestion_color = "#808080",
|
|
cterm = 244,
|
|
},
|
|
log_level = "info",
|
|
disable_inline_completion = false,
|
|
disable_keymaps = false,
|
|
},
|
|
}
|