Add Tabnine client.

This commit is contained in:
Henry Denny 2024-02-29 12:19:31 +00:00
parent f42555f8d4
commit 3f4a6cd6e7
1 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,15 @@
return {
"codota/tabnine-nvim",
build = "./dl_binaries.sh",
config = function()
require('tabnine').setup({
disable_auto_comment = true,
accept_keymap = "<A-]>",
dismiss_keymap = "<A-[>",
debounce_ms = 800,
suggestion_color = { gui = "#808080", cterm = 244 },
exclude_filetypes = { "TelescopePrompt", "NvimTree" },
log_file_path = nil, -- absolute path to Tabnine log file
})
end
}