kickstart.nvim/lua/custom/plugins/cmp-tabnine.lua
Thomas Alcala Schneider e6fdffe1ce
feat: add cmp sources
2023-03-24 19:39:56 +01:00

15 lines
305 B
Lua

return {
'tzachar/cmp-tabnine',
build = './install.sh',
dependencies = { 'hrsh7th/nvim-cmp' },
config = function()
local cmp = require 'cmp'
local config = cmp.get_config()
table.insert(config.sources, {
name = 'tabnine',
option = {},
})
cmp.setup(config)
end,
}