dotfiles/.config/nvim/lua/plugins/extras/coding/cmp/dotenv.lua
2024-01-06 20:51:22 +01:00

9 lines
174 B
Lua

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