22 lines
569 B
Lua
22 lines
569 B
Lua
-- since this is just an example spec, don't actually load anything here and return an empty spec
|
|
-- stylua: ignore
|
|
if false then return {} end
|
|
|
|
-- every spec file under the "plugins" directory will be loaded automatically by lazy.nvim
|
|
--
|
|
-- In your plugin files, you can:
|
|
-- * add extra plugins
|
|
-- * disable/enabled LazyVim plugins
|
|
-- * override the configuration of LazyVim plugins
|
|
return {
|
|
-- add gruvbox
|
|
{ "ellisonleao/gruvbox.nvim" },
|
|
|
|
-- Configure LazyVim to load gruvbox
|
|
{
|
|
"LazyVim/LazyVim",
|
|
opts = {
|
|
colorscheme = "gruvbox",
|
|
},
|
|
},
|
|
}
|