mirror of https://github.com/LazyVim/starter
13 lines
181 B
Lua
13 lines
181 B
Lua
|
return {
|
||
|
-- add dracula
|
||
|
{ "Mofiqul/dracula.nvim" },
|
||
|
|
||
|
-- Configure LazyVim to load dracula
|
||
|
{
|
||
|
"LazyVim/LazyVim",
|
||
|
opts = {
|
||
|
colorscheme = "dracula",
|
||
|
},
|
||
|
},
|
||
|
}
|