all repos

dotfiles @ da1068fdc2e6c53bd0ef2b816c417338a6078f5a

my dotfiles

config/lvim/lua/plug/tabnine.lua (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
local M = {}

function M.setup()
  local ok, tabnine = pcall(require, "cmp_tabnine.config")
  if not ok then
    return
  end

  tabnine:setup {
    max_lines = 1000,
    max_num_results = 10,
    sort = true,
  }
end

return M