2024-09-19 12:58:41 -03:00
|
|
|
return {
|
|
|
|
|
{
|
|
|
|
|
"hrsh7th/nvim-cmp",
|
2024-09-20 00:57:13 -03:00
|
|
|
dependencies = {
|
|
|
|
|
"hrsh7th/cmp-buffer",
|
|
|
|
|
"hrsh7th/cmp-path",
|
|
|
|
|
"saadparwaiz1/cmp_luasnip",
|
|
|
|
|
},
|
2024-09-19 12:58:41 -03:00
|
|
|
opts = function()
|
|
|
|
|
local cmp = require("cmp")
|
|
|
|
|
---@diagnostic disable-next-line: redundant-parameter
|
|
|
|
|
cmp.setup({
|
|
|
|
|
snippet = {
|
|
|
|
|
expand = function(args)
|
|
|
|
|
require("luasnip").lsp_expand(args.body)
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
window = {
|
|
|
|
|
-- completion = cmp.config.window.bordered(),
|
|
|
|
|
-- documentation = cmp.config.window.bordered(),
|
|
|
|
|
},
|
|
|
|
|
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(),
|
|
|
|
|
-- Accept currently selected item. Set `select` to `false` to only confirm explicitly selected items.
|
|
|
|
|
["<CR>"] = cmp.mapping.confirm({ select = false }),
|
|
|
|
|
}),
|
|
|
|
|
sources = cmp.config.sources({
|
|
|
|
|
{ name = "nvim_lsp" },
|
|
|
|
|
{ name = "luasnip" },
|
|
|
|
|
{ name = "path" },
|
|
|
|
|
{ name = "buffer" },
|
|
|
|
|
{ name = "crates" },
|
|
|
|
|
}),
|
|
|
|
|
})
|
|
|
|
|
end
|
|
|
|
|
},
|
|
|
|
|
}
|