mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-29 12:10:12 +02:00
fix(tabnine): run :CmpTabnineHub
automatically on build (#1788)
This commit is contained in:
parent
ea3155aef6
commit
fad3777296
1 changed files with 4 additions and 2 deletions
|
@ -5,10 +5,12 @@ return {
|
||||||
{
|
{
|
||||||
"nvim-cmp",
|
"nvim-cmp",
|
||||||
dependencies = {
|
dependencies = {
|
||||||
-- Add TabNine support, make sure you run :CmpTabnineHub after installation.
|
|
||||||
{
|
{
|
||||||
"tzachar/cmp-tabnine",
|
"tzachar/cmp-tabnine",
|
||||||
build = Util.is_win() and "pwsh -noni .\\install.ps1" or "./install.sh",
|
build = {
|
||||||
|
Util.is_win() and "pwsh -noni .\\install.ps1" or "./install.sh",
|
||||||
|
":CmpTabnineHub",
|
||||||
|
},
|
||||||
dependencies = "hrsh7th/nvim-cmp",
|
dependencies = "hrsh7th/nvim-cmp",
|
||||||
opts = {
|
opts = {
|
||||||
max_lines = 1000,
|
max_lines = 1000,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue