You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kickstart.nvim/lua/custom/plugins/cmp-nvim-lsp.lua

12 lines
221 B
Lua

return {
'hrsh7th/cmp-nvim-lsp',
config = function()
local cmp = require 'cmp'
local config = cmp.get_config()
table.insert(config.sources, {
name = 'nvim_lsp',
})
cmp.setup(config)
end,
}