mirror of
https://github.com/kristoferssolo/SoloVim.git
synced 2025-10-21 20:10:41 +00:00
15 lines
368 B
Lua
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,
|
|
})
|