mirror of https://github.com/LazyVim/starter
17 lines
238 B
Lua
17 lines
238 B
Lua
|
return {
|
||
|
-- Add Dracula colorscheme
|
||
|
{
|
||
|
"Mofiqul/dracula.nvim",
|
||
|
lazy = false,
|
||
|
priority = 1000,
|
||
|
},
|
||
|
|
||
|
-- Configure LazyVim to use Dracula
|
||
|
{
|
||
|
"LazyVim/LazyVim",
|
||
|
opts = {
|
||
|
colorscheme = "dracula",
|
||
|
},
|
||
|
},
|
||
|
}
|