mirror of
https://github.com/craftzdog/solarized-osaka.nvim.git
synced 2026-09-10 07:16:21 -04:00
11 lines
142 B
Lua
11 lines
142 B
Lua
local M = {}
|
|
|
|
function M.get(c, opts)
|
|
--stylua: ignore
|
|
return {
|
|
BufferLineIndicatorSelected = { fg = c.yellow500 },
|
|
}
|
|
end
|
|
|
|
return M
|