Updated config

This commit is contained in:
Eduard Urbach 2024-03-05 00:40:49 +01:00
parent ba0ddfaef4
commit 21cf5f0cb3
Signed by: eduard
GPG key ID: 49226B848C78F6C8
17 changed files with 196 additions and 120 deletions

View file

@ -0,0 +1,19 @@
return {
"navarasu/onedark.nvim",
lazy = false,
priority = 1000,
opts = {
style = "dark",
transparent = true,
term_colors = true,
highlights = {
["StatusLine"] = {fg = "$bg3", bg = "Normal"},
["StatusLineNC"] = {fg = "$bg3", bg = "Normal"},
},
},
config = function(_, opts)
local theme = require("onedark")
theme.setup(opts)
theme.load()
end,
}