mirror of
https://github.com/harivansh-afk/nvim.git
synced 2026-04-15 09:01:16 +00:00
clean
This commit is contained in:
parent
ecfa272a40
commit
77c3b62a35
9 changed files with 48 additions and 95 deletions
|
|
@ -52,24 +52,27 @@ return {
|
|||
},
|
||||
},
|
||||
|
||||
-- Supermaven AI completion
|
||||
-- Supermaven inline suggestions (accepted with Tab)
|
||||
{
|
||||
"supermaven-inc/supermaven-nvim",
|
||||
event = "InsertEnter",
|
||||
config = function(_, opts)
|
||||
require("supermaven-nvim").setup(opts)
|
||||
end,
|
||||
opts = {
|
||||
keymaps = {
|
||||
accept_suggestion = "<Tab>",
|
||||
clear_suggestion = "<C-]>",
|
||||
accept_word = "<C-j>",
|
||||
},
|
||||
ignore_filetypes = { "gitcommit", "TelescopePrompt" },
|
||||
disable_keymaps = false,
|
||||
ignore_filetypes = { gitcommit = true },
|
||||
color = {
|
||||
suggestion_color = vim.api.nvim_get_hl(0, { name = "Comment" }).fg,
|
||||
cterm = 244,
|
||||
},
|
||||
log_level = "info",
|
||||
disable_inline_completion = false,
|
||||
disable_keymaps = false,
|
||||
},
|
||||
},
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue