fix(colorscheme): change to darker

This commit is contained in:
2025-05-01 02:20:43 +02:00
parent 317f42d5a7
commit 913f814071
+4 -3
View File
@@ -3,13 +3,14 @@ return {
"navarasu/onedark.nvim",
priority = 1000,
config = function()
local c = require("onedark.palette").dark
local c = require("onedark.palette").darker
local opts = {
style = "dark",
style = "darker",
highlights = {
NormalFloat = { bg = c.bg0 },
FloatBorder = { bg = c.bg0 },
TabLineSel = { fg = c.fg, bg = c.bg0 }
TabLineSel = { fg = c.fg, bg = c.bg0 },
EndOfBuffer = nil,
},
}
require("onedark").setup(opts)