2023-03-22 18:50:48 +01:00
|
|
|
return {
|
2023-03-24 19:39:56 +01:00
|
|
|
'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,
|
2023-03-22 18:50:48 +01:00
|
|
|
}
|