19 lines
445 B
Lua
19 lines
445 B
Lua
-- 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
|
|
{ "Mofiqul/dracula.nvim" },
|
|
|
|
-- Configure LazyVim to load gruvbox
|
|
{
|
|
"LazyVim/LazyVim",
|
|
opts = {
|
|
colorscheme = "dracula",
|
|
},
|
|
},
|
|
}
|
|
-- change trouble config
|