SoloVim/after/plugin/tabnine.lua
2023-06-14 17:40:26 +03:00

15 lines
368 B
Lua

local status_ok, tabnine = pcall(require, "tabnine")
if not status_ok then
return
end
tabnine.setup({
disable_auto_comment = true,
accept_keymap = "<Tab>",
dismiss_keymap = "<C-c>",
debounce_ms = 800,
suggestion_color = { gui = "#808080", cterm = 244 },
exclude_filetypes = { "TelescopePrompt" },
log_file_path = nil, -- absolute path to Tabnine log file,
})