✨ feat(nvim): add cmp-dotenv extra
This commit is contained in:
parent
9500e72a26
commit
31bd02c722
1 changed files with 9 additions and 0 deletions
9
.config/nvim/lua/plugins/extras/coding/cmp/dotenv.lua
Normal file
9
.config/nvim/lua/plugins/extras/coding/cmp/dotenv.lua
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
return {
|
||||||
|
"hrsh7th/nvim-cmp",
|
||||||
|
dependencies = {
|
||||||
|
"SergioRibera/cmp-dotenv",
|
||||||
|
},
|
||||||
|
opts = function(_, opts)
|
||||||
|
table.insert(opts.sources, { name = "dotenv" })
|
||||||
|
end,
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue