neovim-config/lua/plugins/configs/cmp.lua

102 lines
2.5 KiB
Lua
Raw Normal View History

2021-08-27 10:02:33 +00:00
local present, cmp = pcall(require, "cmp")
if not present then
return
end
2021-08-27 01:14:58 +00:00
vim.opt.completeopt = "menuone,noselect"
local function border(hl_name)
return {
{ "", hl_name },
{ "", hl_name },
{ "", hl_name },
{ "", hl_name },
{ "", hl_name },
{ "", hl_name },
{ "", hl_name },
{ "", hl_name },
}
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
local options = {
window = {
completion = {
border = border "CmpBorder",
},
documentation = {
border = border "CmpDocBorder",
},
},
snippet = {
2021-08-27 01:14:58 +00:00
expand = function(args)
require("luasnip").lsp_expand(args.body)
end,
},
formatting = {
format = function(_, vim_item)
2021-11-17 05:30:57 +00:00
local icons = require "plugins.configs.lspkind_icons"
vim_item.kind = string.format("%s %s", icons[vim_item.kind], vim_item.kind)
2021-08-27 01:14:58 +00:00
return vim_item
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.complete(),
["<C-e>"] = cmp.mapping.close(),
["<CR>"] = cmp.mapping.confirm {
behavior = cmp.ConfirmBehavior.Insert,
2021-08-27 01:14:58 +00:00
select = true,
},
2022-03-03 23:53:40 +00:00
["<Tab>"] = cmp.mapping(function(fallback)
if cmp.visible() then
2021-10-08 13:36:15 +00:00
cmp.select_next_item()
elseif require("luasnip").expand_or_jumpable() then
vim.fn.feedkeys(vim.api.nvim_replace_termcodes("<Plug>luasnip-expand-or-jump", true, true, true), "")
2021-08-27 01:14:58 +00:00
else
fallback()
end
end, {
"i",
"s",
}),
2022-03-03 23:53:40 +00:00
["<S-Tab>"] = cmp.mapping(function(fallback)
2021-10-08 13:36:15 +00:00
if cmp.visible() then
cmp.select_prev_item()
elseif require("luasnip").jumpable(-1) then
vim.fn.feedkeys(vim.api.nvim_replace_termcodes("<Plug>luasnip-jump-prev", true, true, true), "")
2021-08-27 01:14:58 +00:00
else
fallback()
end
end, {
"i",
"s",
}),
2021-08-27 01:14:58 +00:00
},
sources = {
{ name = "luasnip" },
{ name = "nvim_lsp" },
2021-08-27 01:14:58 +00:00
{ name = "buffer" },
{ name = "nvim_lua" },
2021-09-29 12:46:43 +00:00
{ name = "path" },
2021-08-27 01:14:58 +00:00
},
}
-- check for any override
options = require("core.utils").load_override(options, "hrsh7th/nvim-cmp")
cmp.setup(options)