AutoYADM commit: 2024-12-06 18:25:04

This commit is contained in:
Daniel Fichtinger 2024-12-06 18:25:04 -05:00
parent 2a09a4e449
commit 4b9928768a

View file

@ -1,5 +1,18 @@
-- vim.api.nvim_create_autocmd('BufReadPre', {
-- pattern = "markdown",
-- callback = function(t)
-- local sources = default_cmp_sources
-- if not bufIsBig(t.buf) then
-- sources[#sources+1] = {name = 'treesitter', group_index = 2}
-- end
-- cmp.setup.buffer {
-- sources = sources
-- }
-- end
-- })
return {
"hrsh7th/nvim-cmp",
-- enabled = false,
-- ---@param opts cmp.ConfigSchema
-- opts = function(_, opts)
-- local has_words_before = function()