feat(colorscheme): change colorscheme to onedark

This commit is contained in:
2025-04-30 20:50:42 +02:00
parent 4a8f67f086
commit 880593ccba
4 changed files with 41 additions and 67 deletions
+20
View File
@@ -0,0 +1,20 @@
---@type LazyPluginSpec
return {
"navarasu/onedark.nvim",
-- enabled = false,
priority = 1000, -- make sure to load this before all the other start plugins
config = function()
local c = require("onedark.palette").dark
local opts = {
style = "dark",
highlights = {
NormalFloat = { bg = c.bg0 },
FloatBorder = { bg = c.bg0 },
TabLineSel = { fg = c.fg, bg = c.bg0 }
},
}
require("onedark").setup(opts)
-- Enable theme
require("onedark").load()
end,
}