109 lines
2.6 KiB
Lua
109 lines
2.6 KiB
Lua
local cmp_status_ok, cmp = pcall(require, 'cmp')
|
|
if not cmp_status_ok then
|
|
return
|
|
end
|
|
|
|
local function border(hl_name)
|
|
return {
|
|
{ "╭", hl_name },
|
|
{ "─", hl_name },
|
|
{ "╮", hl_name },
|
|
{ "│", hl_name },
|
|
{ "╯", hl_name },
|
|
{ "─", hl_name },
|
|
{ "╰", hl_name },
|
|
{ "│", hl_name },
|
|
}
|
|
end
|
|
|
|
local check_backspace = function()
|
|
local col = vim.fn.col(".") - 1
|
|
return col == 0 or vim.fn.getline("."):sub(col, col):match("%s")
|
|
end
|
|
|
|
local cmp_window = require "cmp.utils.window"
|
|
|
|
cmp_window.info_ = cmp_window.info
|
|
cmp_window.info = function(self)
|
|
local info = self:info_()
|
|
info.scrollable = false
|
|
return info
|
|
end
|
|
|
|
cmp.setup({
|
|
window = {
|
|
completion = {
|
|
border = border "CmpBorder",
|
|
winhighlight = "Normal:CmpPmenu,CursorLine:PmenuSel,Search:None",
|
|
},
|
|
documentation = {
|
|
border = border "CmpDocBorder",
|
|
},
|
|
},
|
|
snippet = {
|
|
expand = function(args)
|
|
require("luasnip").lsp_expand(args.body)
|
|
end,
|
|
},
|
|
formatting = {
|
|
format = function(_, vim_item)
|
|
local icons = require('config.iconlist').kind
|
|
vim_item.kind = string.format("%s %s", icons[vim_item.kind], vim_item.kind)
|
|
return vim_item
|
|
end,
|
|
},
|
|
mapping = {
|
|
["<C-k>"] = cmp.mapping.select_prev_item(),
|
|
["<C-j>"] = cmp.mapping.select_next_item(),
|
|
["<C-b>"] = cmp.mapping(cmp.mapping.scroll_docs(-1), { "i", "c" }),
|
|
["<C-f>"] = cmp.mapping(cmp.mapping.scroll_docs(1), { "i", "c" }),
|
|
["<C-Space>"] = cmp.mapping(cmp.mapping.complete(), { "i", "c" }),
|
|
["<C-e>"] = cmp.mapping({
|
|
i = cmp.mapping.abort(),
|
|
c = cmp.mapping.close(),
|
|
}),
|
|
["<CR>"] = cmp.mapping.confirm({ select = true }),
|
|
["<Tab>"] = cmp.mapping(function(fallback)
|
|
if cmp.visible() then
|
|
cmp.select_next_item()
|
|
elseif require('luasnip').expandable() then
|
|
require('luasnip').expand()
|
|
elseif require('luasnip').expand_or_jumpable() then
|
|
require('luasnip').expand_or_jump()
|
|
elseif check_backspace() then
|
|
fallback()
|
|
else
|
|
fallback()
|
|
end
|
|
end, {
|
|
"i",
|
|
"s",
|
|
}),
|
|
["<S-Tab>"] = cmp.mapping(function(fallback)
|
|
if cmp.visible() then
|
|
cmp.select_prev_item()
|
|
elseif require('luasnip').jumpable(-1) then
|
|
require('luasnip').jump(-1)
|
|
else
|
|
fallback()
|
|
end
|
|
end, {
|
|
"i",
|
|
"s",
|
|
}),
|
|
},
|
|
sources = {
|
|
{ name = "nvim_lsp" },
|
|
{ name = "nvim_lua" },
|
|
{ name = "luasnip" },
|
|
{ name = "buffer" },
|
|
{ name = "path" },
|
|
},
|
|
experimental = {
|
|
ghost_text = true,
|
|
},
|
|
confirm_opts = {
|
|
behavior = cmp.ConfirmBehavior.Replace,
|
|
select = false,
|
|
}
|
|
})
|