This commit is contained in:
2025-09-05 20:46:41 -04:00
commit 5d95db3480
18 changed files with 481 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
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
}