dotfiles/config/nvim/lua/plugins/nvim-cmp.lua

72 lines
1.8 KiB
Lua

vim.opt.completeopt = 'menu,menuone,noselect'
local cmp = require('cmp')
cmp.setup({
snippet = {
expand = function(args)
require('luasnip').lsp_expand(args.body)
end,
},
formatting = {
format = function(entry, vim_item)
vim_item.menu = ({
nvim_lsp = '[LSP]',
buffer = '[Buffer]',
luasnip = '[Snippet]',
})[entry.source.name]
return vim_item
end,
},
window = {
completion = cmp.config.window.bordered({ border = 'rounded' }),
documentation = cmp.config.window.bordered({ border = 'rounded' }),
},
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 = false }), -- Accept currently selected item. Set `select` to `false` to only confirm explicitly selected items.
}),
sources = cmp.config.sources({
{ name = 'nvim_lsp', keyword_length = 3 },
{ name = 'luasnip', keyword_length = 2 },
}, {
{
name = 'buffer',
keyword_length = 3,
option = {
get_bufnrs = function()
return vim.api.nvim_list_bufs()
end,
},
},
})
})
-- configure completion for specific filetype
cmp.setup.filetype('gitcommit', {
sources = cmp.config.sources({
{ name = 'buffer' },
}),
})
-- use buffer source for `/` and `?` (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' }
}),
})