blob: 46ac13aaf6fb2aa2979bed3941e7b443406897f3 (
plain)
1
2
3
4
5
6
7
8
9
10
|
return {
{
'doums/darcula',
priority = 1001, -- Make sure to load this before all the other start plugins. kickstart prio is 1000.
config = function()
-- Load the colorscheme here.
vim.cmd.colorscheme 'darcula'
end,
},
}
|