2023-07-29 20:15:47 +02:00
|
|
|
return {
|
2023-08-19 19:22:56 +02:00
|
|
|
"navarasu/onedark.nvim",
|
2023-08-21 00:09:00 +02:00
|
|
|
lazy = false,
|
|
|
|
priority = 1000,
|
|
|
|
opts = {
|
|
|
|
style = "dark",
|
2024-02-01 20:59:19 +01:00
|
|
|
transparent = true,
|
2023-08-21 19:19:37 +02:00
|
|
|
term_colors = true,
|
2023-08-22 16:51:35 +02:00
|
|
|
highlights = {
|
|
|
|
["StatusLine"] = {fg = "$bg3", bg = "Normal"},
|
|
|
|
["StatusLineNC"] = {fg = "$bg3", bg = "Normal"},
|
|
|
|
},
|
2023-08-21 00:09:00 +02:00
|
|
|
},
|
|
|
|
config = function(_, opts)
|
|
|
|
local theme = require("onedark")
|
|
|
|
theme.setup(opts)
|
|
|
|
theme.load()
|
2023-08-19 19:22:56 +02:00
|
|
|
end,
|
2023-07-29 20:15:47 +02:00
|
|
|
}
|