21 lines
582 B
Lua
21 lines
582 B
Lua
---@type LazyPluginSpec
|
|
return {
|
|
"navarasu/onedark.nvim",
|
|
priority = 1000,
|
|
config = function()
|
|
require("onedark").setup({ style = "darker" })
|
|
|
|
local c = require("onedark.colors")
|
|
local highlights = {
|
|
NormalFloat = { bg = c.bg0 },
|
|
FloatBorder = { bg = c.bg0 },
|
|
TabLineSel = { fg = c.fg, bg = c.bg0 },
|
|
EndOfBuffer = nil,
|
|
NvimTreeIndentMarker = { fg = c.bg3 },
|
|
}
|
|
require("onedark").set_options("highlights", highlights)
|
|
|
|
require("onedark").colorscheme()
|
|
end,
|
|
}
|