
## Description Makes it easier to disable it for users who want to try other completion engines, without it being pulled back by some Extra. <!-- Describe the big picture of your changes to communicate to the maintainers why we should accept this pull request. --> ## Related Issue(s) None <!-- If this PR fixes any issues, please link to the issue here. - Fixes #<issue_number> --> ## Screenshots <!-- Add screenshots of the changes if applicable. --> ## Checklist - [x] I've read the [CONTRIBUTING](https://github.com/LazyVim/LazyVim/blob/main/CONTRIBUTING.md) guidelines.
51 lines
1.3 KiB
Lua
51 lines
1.3 KiB
Lua
return {
|
|
-- Tabnine cmp source
|
|
{
|
|
"nvim-cmp",
|
|
optional = true,
|
|
dependencies = {
|
|
{
|
|
"tzachar/cmp-tabnine",
|
|
build = {
|
|
LazyVim.is_win() and "pwsh -noni .\\install.ps1" or "./install.sh",
|
|
":CmpTabnineHub",
|
|
},
|
|
dependencies = "hrsh7th/nvim-cmp",
|
|
opts = {
|
|
max_lines = 1000,
|
|
max_num_results = 3,
|
|
sort = true,
|
|
},
|
|
config = function(_, opts)
|
|
require("cmp_tabnine.config"):setup(opts)
|
|
end,
|
|
},
|
|
},
|
|
---@param opts cmp.ConfigSchema
|
|
opts = function(_, opts)
|
|
table.insert(opts.sources, 1, {
|
|
name = "cmp_tabnine",
|
|
group_index = 1,
|
|
priority = 100,
|
|
})
|
|
|
|
opts.formatting.format = LazyVim.inject.args(opts.formatting.format, function(entry, item)
|
|
-- Hide percentage in the menu
|
|
if entry.source.name == "cmp_tabnine" then
|
|
item.menu = ""
|
|
end
|
|
end)
|
|
end,
|
|
},
|
|
-- Show TabNine status in lualine
|
|
{
|
|
"nvim-lualine/lualine.nvim",
|
|
optional = true,
|
|
event = "VeryLazy",
|
|
opts = function(_, opts)
|
|
local icon = LazyVim.config.icons.kinds.TabNine
|
|
table.insert(opts.sections.lualine_x, 2, LazyVim.lualine.cmp_source("cmp_tabnine", icon))
|
|
end,
|
|
},
|
|
}
|