15 lines
383 B
Lua
15 lines
383 B
Lua
require("lazy").setup({
|
|
defaults = {
|
|
lazy = true,
|
|
},
|
|
spec = {
|
|
-- import your plugins
|
|
{ import = "plugins" },
|
|
},
|
|
-- Configure any other settings here. See the documentation for more details.
|
|
-- colorscheme that will be used when installing plugins.
|
|
install = { colorscheme = { "enfocado" } },
|
|
-- automatically check for plugin updates
|
|
checker = { enabled = false },
|
|
})
|