blob: e41380c61d8f87a5f974d35476079acd21e2f7cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
local M = {}
local palette = require "no-clown-fiesta.palette"
local default = {
transparent_background = palette.bg,
comments = "NONE",
keywords = "NONE",
functions = "NONE",
variables = "NONE",
type = "NONE",
}
function M.set(opts)
return vim.tbl_extend("force", default, opts)
end
return M
|