vim-settings/neovim/lua/plugins/completion.lua

57 lines
1.6 KiB
Lua
Raw Normal View History

2021-09-30 17:58:22 +00:00
local M = {}
function M.config_cmp()
local cmp = require("cmp")
2022-01-02 15:42:18 +00:00
local luasnip = require("luasnip")
2021-12-15 17:37:51 +00:00
cmp.setup({
2021-09-30 17:58:22 +00:00
completion = {
2022-02-25 17:10:12 +00:00
completeopt = "menuone,noinsert",
2021-09-30 17:58:22 +00:00
autocomplete = false,
},
2022-01-03 06:43:24 +00:00
snippet = {
expand = function(args)
require("luasnip").lsp_expand(args.body)
end,
},
2021-09-30 17:58:22 +00:00
sources = {
2021-12-15 17:37:51 +00:00
{ name = "nvim_lsp" },
{ name = "luasnip" },
{ name = "buffer" },
{ name = "spell" },
},
2022-04-21 20:03:22 +00:00
mapping = cmp.mapping.preset.insert({
-- Scroll docs with readline back - forward
["<C-b>"] = cmp.mapping.scroll_docs(-4),
["<C-f>"] = cmp.mapping.scroll_docs(4),
-- Expand snippets with Tab
2022-01-02 15:42:18 +00:00
["<Tab>"] = cmp.mapping(function(fallback)
if luasnip.expand_or_jumpable() then
luasnip.expand_or_jump()
else
fallback()
end
end),
2022-04-21 20:03:22 +00:00
-- Start and cycle completions with C-Space
2021-12-15 17:37:51 +00:00
["<C-Space>"] = cmp.mapping(function()
2021-12-11 00:54:29 +00:00
if cmp.visible() then
cmp.select_next_item()
else
cmp.complete()
end
2022-04-21 20:03:22 +00:00
end),
-- Confirm completion with Enter
2021-12-15 17:37:51 +00:00
["<CR>"] = cmp.mapping.confirm({ select = true }),
2022-04-21 20:03:22 +00:00
}),
2021-12-15 17:37:51 +00:00
})
2021-09-30 17:58:22 +00:00
-- Add a plug mapping to use in C-Space binding
vim.api.nvim_set_keymap(
"i",
"<Plug>(cmp_complete)",
"<cmd>lua require('cmp').complete()<CR>",
2021-12-15 17:37:51 +00:00
{ silent = true, noremap = true }
2021-09-30 17:58:22 +00:00
)
end
2021-09-30 17:58:22 +00:00
return M