return { "hrsh7th/nvim-cmp", dependencies = { "neovim/nvim-lspconfig", "hrsh7th/cmp-nvim-lsp", }, config = function() local cmp = require("cmp") cmp.setup({ snippit = { expand = function(args) end }, window = { }, sources = cmp.config.sources({ {name = "nvim_lsp"} }, { {name = "buffer"} }) }) end }