2023-11-01 16:27:35 +01:00
|
|
|
local cmp = require 'cmp'
|
|
|
|
local luasnip = require 'luasnip'
|
|
|
|
|
2024-01-10 11:54:07 +01:00
|
|
|
require("copilot_cmp").setup()
|
|
|
|
|
|
|
|
local has_words_before = function()
|
|
|
|
if vim.api.nvim_buf_get_option(0, "buftype") == "prompt" then return false end
|
|
|
|
local line, col = unpack(vim.api.nvim_win_get_cursor(0))
|
|
|
|
return col ~= 0 and vim.api.nvim_buf_get_text(0, line - 1, 0, line - 1, col, {})[1]:match("^%s*$") == nil
|
|
|
|
end
|
|
|
|
|
2023-11-01 16:27:35 +01:00
|
|
|
cmp.setup({
|
|
|
|
snippet = {
|
|
|
|
expand = function(args)
|
|
|
|
luasnip.lsp_expand(args.body)
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
mapping = cmp.mapping.preset.insert({
|
|
|
|
['<C-p>'] = cmp.mapping.select_prev_item(),
|
|
|
|
['<C-n>'] = cmp.mapping.select_next_item(),
|
|
|
|
-- Add tab support
|
|
|
|
['<S-Tab>'] = cmp.mapping(function(fallback)
|
|
|
|
if cmp.visible() then
|
|
|
|
cmp.select_prev_item()
|
|
|
|
elseif luasnip.jumpable(-1) then
|
|
|
|
luasnip.jump(-1)
|
|
|
|
else
|
|
|
|
fallback()
|
|
|
|
end
|
|
|
|
end, { 'i', 's' }),
|
|
|
|
['<Tab>'] = cmp.mapping(function(fallback)
|
2024-01-10 11:54:07 +01:00
|
|
|
if cmp.visible() and has_words_before() then
|
2023-11-01 16:27:35 +01:00
|
|
|
cmp.select_next_item()
|
|
|
|
elseif luasnip.expand_or_jumpable() then
|
|
|
|
luasnip.expand_or_jump()
|
|
|
|
else
|
|
|
|
fallback()
|
|
|
|
end
|
|
|
|
end, { 'i', 's' }),
|
|
|
|
['<C-f>'] = cmp.mapping.scroll_docs(-4),
|
|
|
|
['<C-d>'] = cmp.mapping.scroll_docs(4),
|
|
|
|
['<C-Space>'] = cmp.mapping.complete(),
|
|
|
|
['<C-e>'] = cmp.mapping.close(),
|
|
|
|
['<CR>'] = cmp.mapping.confirm({
|
|
|
|
behavior = cmp.ConfirmBehavior.Insert,
|
|
|
|
select = true,
|
|
|
|
})
|
|
|
|
}),
|
|
|
|
sources = cmp.config.sources({
|
2024-01-10 11:54:07 +01:00
|
|
|
{ name = "copilot", group_index = 2 },
|
2023-11-01 16:27:35 +01:00
|
|
|
{ name = 'path' }, -- file paths
|
|
|
|
{ name = 'nvim_lsp' }, -- from language server
|
|
|
|
{ name = 'nvim_lsp_signature_help' }, -- display function signatures with current parameter emphasized
|
|
|
|
{ name = 'luasnip' },
|
|
|
|
{ name = 'nvim_lua' }, -- complete neovim's Lua runtime API such vim.lsp.*
|
|
|
|
{ name = 'buffer' }, -- source current buffer
|
|
|
|
{ name = 'calc' }, -- source for math calculation
|
|
|
|
}),
|
|
|
|
window = {
|
|
|
|
completion = cmp.config.window.bordered(),
|
|
|
|
documentation = cmp.config.window.bordered(),
|
|
|
|
},
|
|
|
|
formatting = {
|
|
|
|
fields = { 'menu', 'abbr', 'kind' },
|
|
|
|
format = function(entry, item)
|
|
|
|
local menu_icon = {
|
|
|
|
nvim_lsp = 'λ',
|
|
|
|
vsnip = '⋗',
|
|
|
|
buffer = 'Ω',
|
|
|
|
path = '🖫',
|
|
|
|
}
|
|
|
|
item.menu = menu_icon[entry.source.name]
|
|
|
|
return item
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
cmp.setup.filetype('gitcommit', {
|
|
|
|
sources = cmp.config.sources({
|
|
|
|
{ name = 'cmp_git' }, -- You can specify the `cmp_git` source if you were installed it.
|
|
|
|
}, {
|
|
|
|
{ name = 'buffer' },
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
-- Use buffer source for `/` (if you enabled `native_menu`, this won't work anymore).
|
|
|
|
cmp.setup.cmdline('/', {
|
|
|
|
mapping = cmp.mapping.preset.cmdline(),
|
|
|
|
sources = {
|
|
|
|
{ name = 'buffer' }
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
-- Use cmdline & path source for ':' (if you enabled `native_menu`, this won't work anymore).
|
|
|
|
cmp.setup.cmdline(':', {
|
|
|
|
mapping = cmp.mapping.preset.cmdline(),
|
|
|
|
sources = cmp.config.sources({
|
|
|
|
{ name = 'path' }
|
|
|
|
}, {
|
|
|
|
{ name = 'cmdline' }
|
|
|
|
})
|
|
|
|
})
|