15 lines
229 B
Lua
Raw Normal View History

2023-07-29 18:15:47 +00:00
return {
2023-08-19 17:22:56 +00:00
"navarasu/onedark.nvim",
2023-08-20 22:09:00 +00:00
lazy = false,
priority = 1000,
opts = {
style = "dark",
transparent = false,
},
config = function(_, opts)
local theme = require("onedark")
theme.setup(opts)
theme.load()
2023-08-19 17:22:56 +00:00
end,
2023-07-29 18:15:47 +00:00
}