1
0
Fork 0
numbers/nvim/lua/plugins/cmp.lua

110 lines
3.0 KiB
Lua

local has_words_before = function()
local line, col = unpack(vim.api.nvim_win_get_cursor(0))
return col ~= 0 and vim.api.nvim_buf_get_lines(0, line - 1, line, true)[1]:sub(col, col):match("%s") == nil
end
if not packer_plugins["plenary.nvim"].loaded then
vim.cmd([[packadd plenary.nvim]])
end
local luasnip = require("luasnip")
local cmp = require("cmp")
cmp.setup({
formatting = {
format = function(entry, vim_item)
vim_item.menu = ({
nvim_lsp = '[LSP]',
buffer = '[Buffer]',
luasnip = '[Snippet]',
nvim_lua = '[API]',
path = '[Path]',
spell = '[Spell]',
})[entry.source.name]
vim_item.kind = ({
Text = ' text',
Method = ' Method',
Function = ' Function',
Constructor = ' Constructor',
Field = 'ﰠ Field',
Variable = ' Variable',
Class = ' Class',
Interface = 'ﰮ Interface',
Module = ' Module',
Property = ' Property',
Unit = ' Unit',
Value = ' Value',
Enum = ' Enum',
Keyword = ' Keyword',
Snippet = '﬌ Snippet',
Color = ' Color',
File = ' File',
Reference = ' Reference',
Folder = ' Folder',
EnumMember = ' EnumMember',
Constant = ' Constant',
Struct = ' Struct',
Event = ' Event',
Operator = ' Operator',
TypeParameter = ' TypeParameter',
})[vim_item.kind]
return vim_item
end
},
snippet = {
expand = function(args)
luasnip.lsp_expand(args.body)
end,
},
mapping = {
['<C-p>'] = cmp.mapping.select_prev_item(),
['<C-n>'] = cmp.mapping.select_next_item(),
['<C-d>'] = cmp.mapping.scroll_docs(-4),
['<C-f>'] = cmp.mapping.scroll_docs(4),
["<C-Space>"] = cmp.mapping(function(_)
return vim.fn.pumvisible() == 1 and cmp.close() or cmp.complete()
end),
['<C-e>'] = cmp.mapping.close(),
['<CR>'] = cmp.mapping.confirm { select = true,},
["<Tab>"] = cmp.mapping(function(fallback)
if cmp.visible() then
cmp.select_next_item()
elseif luasnip and luasnip.expand_or_jumpable() then
luasnip.expand_or_jump()
elseif has_words_before() then
vim.api.nvim_feedkeys(
vim.api.nvim_replace_termcodes("<tab>", true, true, true),
"n",
true
)
else
fallback()
end
end, { "i", "s" }),
["<S-Tab>"] = cmp.mapping(function(fallback)
if cmp.visible() then
cmp.select_prev_item()
elseif luasnip and luasnip.jumpable(-1) then
luasnip.jump(-1)
elseif has_words_before() then
vim.api.nvim_feedkeys(
vim.api.nvim_replace_termcodes("<s-tab>", true, true, true),
"n",
true
)
else
fallback()
end
end, { "i", "s" }),
},
preselect = cmp.PreselectMode.Item,
sources = {
{ name = 'path' },
{ name = 'buffer', Keyword_length = 5 },
},
experimental = { native_menu = false }
})
local cmp_autopairs = require("nvim-autopairs.completion.cmp")
cmp.event:on("confirm_done", cmp_autopairs.on_confirm_done())