Files
dot-configs/nvim/lua/zinn/plugins/mvim-cmp.lua
2025-09-05 20:46:41 -04:00

21 lines
569 B
Lua

return {
-- -- In the config function of nvim-cmp
-- config = function()
-- local cmp = require("cmp")
--
-- cmp.setup({
-- mapping = cmp.mapping.preset.insert({
-- ["<C-Space>"] = cmp.mapping.complete(),
-- ["<CR>"] = cmp.mapping.confirm({ select = true }),
-- ["<C-n>"] = cmp.mapping.select_next_item(),
-- ["<C-p>"] = cmp.mapping.select_prev_item(),
-- }),
-- sources = cmp.config.sources({
-- { name = "nvim_lsp" },
-- { name = "buffer" },
-- { name = "path" },
-- }),
-- })
-- end
}