90 lines
3.4 KiB
Lua
90 lines
3.4 KiB
Lua
return {
|
|
{
|
|
"hrsh7th/nvim-cmp",
|
|
event = "InsertEnter",
|
|
dependencies = {
|
|
"hrsh7th/cmp-nvim-lsp",
|
|
"hrsh7th/cmp-path",
|
|
"hrsh7th/cmp-emoji",
|
|
"hrsh7th/cmp-buffer",
|
|
"saadparwaiz1/cmp_luasnip",
|
|
{
|
|
"zbirenbaum/copilot-cmp",
|
|
dependencies = "copilot.lua",
|
|
opts = {},
|
|
config = function(_, opts)
|
|
local copilot_cmp = require("copilot_cmp")
|
|
copilot_cmp.setup(opts)
|
|
-- attach cmp source whenever copilot attaches
|
|
-- fixes lazy-loading issues with the copilot cmp source
|
|
require("lazyvim.utils").on_attach(function(client)
|
|
if client.name == "copilot" then
|
|
copilot_cmp._on_insert_enter({})
|
|
end
|
|
end)
|
|
end,
|
|
},
|
|
},
|
|
config = function()
|
|
local cmp = require("cmp")
|
|
cmp.setup({
|
|
completion = {
|
|
completeopt = "menu,menuone,noinsert",
|
|
},
|
|
snippet = {
|
|
expand = function(args)
|
|
require("luasnip").lsp_expand(args.body)
|
|
end,
|
|
},
|
|
mapping = cmp.mapping.preset.insert({
|
|
["<C-b>"] = cmp.mapping.scroll_docs(-4),
|
|
["<C-f>"] = cmp.mapping.scroll_docs(4),
|
|
["<C-Space>"] = cmp.mapping.complete(),
|
|
["<C-e>"] = cmp.mapping.abort(),
|
|
["<CR>"] = cmp.mapping.confirm({ select = true }), -- Accept currently selected item. Set `select` to `false` to only confirm explicitly selected items.
|
|
["<C-n>"] = cmp.mapping.select_next_item({ behavior = cmp.SelectBehavior.Insert }),
|
|
["<C-p>"] = cmp.mapping.select_prev_item({ behavior = cmp.SelectBehavior.Insert }),
|
|
}),
|
|
sources = cmp.config.sources({
|
|
{ name = "nvim_lsp" },
|
|
{ name = "luasnip" },
|
|
{ name = "path" },
|
|
{ name = "emoji" },
|
|
{ name = "buffer" },
|
|
{ name = "copilot" },
|
|
}),
|
|
formatting = {
|
|
format = function(_, item)
|
|
local icons = require("lazyvim.config.icons").kind
|
|
if icons[item.kind] then
|
|
item.kind = icons[item.kind] .. " " .. item.kind
|
|
end
|
|
return item
|
|
end,
|
|
},
|
|
experimental = {
|
|
ghost_text = {
|
|
hl_group = "LspCodeLens",
|
|
},
|
|
},
|
|
})
|
|
end,
|
|
},
|
|
{
|
|
"zbirenbaum/copilot-cmp",
|
|
dependencies = "copilot.lua",
|
|
opts = {},
|
|
config = function(_, opts)
|
|
local copilot_cmp = require("copilot_cmp")
|
|
copilot_cmp.setup(opts)
|
|
-- attach cmp source whenever copilot attaches
|
|
-- fixes lazy-loading issues with the copilot cmp source
|
|
require("lazyvim.utils").on_attach(function(client)
|
|
if client.name == "copilot" then
|
|
copilot_cmp._on_insert_enter({})
|
|
end
|
|
end)
|
|
end,
|
|
}
|
|
}
|