Merge branch 'LazyVim:main' into main

pull/76/head
Bill Cryer 2023-11-28 10:17:59 -05:00 committed by GitHub
commit 26ec3d543e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -44,8 +44,7 @@ return {
dependencies = { "hrsh7th/cmp-emoji" }, dependencies = { "hrsh7th/cmp-emoji" },
---@param opts cmp.ConfigSchema ---@param opts cmp.ConfigSchema
opts = function(_, opts) opts = function(_, opts)
local cmp = require("cmp") table.insert(opts.sources, { name = "emoji" })
opts.sources = cmp.config.sources(vim.list_extend(opts.sources, { { name = "emoji" } }))
end, end,
}, },