17 lines
349 B
Lua
17 lines
349 B
Lua
|
return {
|
||
|
{
|
||
|
-- Theme inspired by Atom
|
||
|
'navarasu/onedark.nvim',
|
||
|
priority = 1000,
|
||
|
lazy = false,
|
||
|
config = function()
|
||
|
require('onedark').setup {
|
||
|
-- Set a style preset. 'dark' is default.
|
||
|
style = 'dark', -- dark, darker, cool, deep, warm, warmer, light
|
||
|
}
|
||
|
require('onedark').load()
|
||
|
end,
|
||
|
},
|
||
|
}
|
||
|
|