Files
zenbones-theme/lua/zenbones/shipwright/transform.lua
2021-11-08 17:26:17 +08:00

17 lines
348 B
Lua

local M = {}
M.colorscheme_to_term_colors = function(colorscheme)
local specs, _, term = unpack(colorscheme)
local fg = specs.Normal.fg
return vim.tbl_extend("keep", {
fg = fg,
bg = specs.Normal.bg,
cursor_fg = specs.Cursor.fg,
cursor_bg = specs.Cursor.bg,
selection_bg = specs.Visual.bg,
selection_fg = fg,
}, term)
end
return M