feat(nvim): add cmp-dotenv extra

This commit is contained in:
Sergio Laín 2024-01-06 20:51:22 +01:00
parent 9500e72a26
commit 31bd02c722
No known key found for this signature in database
GPG key ID: 14C9B8080681777B

View file

@ -0,0 +1,9 @@
return {
"hrsh7th/nvim-cmp",
dependencies = {
"SergioRibera/cmp-dotenv",
},
opts = function(_, opts)
table.insert(opts.sources, { name = "dotenv" })
end,
}