starter/lua/plugins/colorscheme.lua

17 lines
238 B
Lua
Raw Normal View History

2025-03-12 12:16:33 +08:00
return {
-- Add Dracula colorscheme
{
"Mofiqul/dracula.nvim",
lazy = false,
priority = 1000,
},
-- Configure LazyVim to use Dracula
{
"LazyVim/LazyVim",
opts = {
colorscheme = "dracula",
},
},
}