mirror of https://github.com/LazyVim/starter
10 lines
159 B
Lua
10 lines
159 B
Lua
|
return {
|
||
|
"ellisonleao/dotenv.nvim",
|
||
|
config = function()
|
||
|
require("dotenv").setup({
|
||
|
enabled_on_load = true,
|
||
|
verbose = false,
|
||
|
})
|
||
|
end,
|
||
|
}
|