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.
|
return {
|
|
'David-Kunz/cmp-npm',
|
|
config = function()
|
|
require('cmp-npm').setup()
|
|
local cmp = require('cmp')
|
|
local config = cmp.get_config()
|
|
table.insert(config.sources, {
|
|
name = 'npm', keyword_length = 4
|
|
})
|
|
cmp.setup(config)
|
|
end
|
|
}
|