vim-settings/neovim/lua/plugins/completion.lua
ViViDboarder fc016bd7b8 WIP: Made a few changes
This could use a broader refactor similar to lazyvim that takes advantage of opt merging
2024-07-19 13:16:51 -07:00

57 lines
1.7 KiB
Lua

local M = {}
function M.config_cmp()
local cmp = require("cmp")
local luasnip = require("luasnip")
cmp.setup({
completion = {
completeopt = "menuone,noinsert",
autocomplete = false,
},
snippet = {
expand = function(args)
require("luasnip").lsp_expand(args.body)
end,
},
sources = {
{ name = "nvim_lsp" },
{ name = "luasnip" },
{ name = "buffer" },
{ name = "spell" },
{ name = "obsidian" },
{ name = "obsidian_new" },
},
mapping = cmp.mapping.preset.insert({
-- Scroll docs with readline back - forward
["<C-U>"] = cmp.mapping.scroll_docs(-4),
["<C-D>"] = cmp.mapping.scroll_docs(4),
-- Expand snippets with Tab
["<Tab>"] = cmp.mapping(function(fallback)
if luasnip.expand_or_jumpable() then
luasnip.expand_or_jump()
else
fallback()
end
end),
-- Start and cycle completions with C-Space
["<C-Space>"] = cmp.mapping(function()
if cmp.visible() then
cmp.select_next_item()
else
cmp.complete()
end
end),
-- Confirm completion with Enter
["<CR>"] = cmp.mapping.confirm({ select = true }),
}),
})
-- Add a plug mapping to use in C-Space binding
local utils = require("utils")
utils.keymap_set("i", "<Plug>(cmp_complete)", function()
require("cmp").complete()
end, { desc = "Autocomplete" })
end
return M