20 lines
375 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,
2023-08-21 17:19:37 +00:00
term_colors = true,
2023-08-22 14:51:35 +00:00
highlights = {
["StatusLine"] = {fg = "$bg3", bg = "Normal"},
["StatusLineNC"] = {fg = "$bg3", bg = "Normal"},
},
2023-08-20 22:09:00 +00:00
},
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
}