25 lines
493 B
Lua
25 lines
493 B
Lua
require("kanagawa").setup({
|
|
compile = true,
|
|
undercurl = true,
|
|
commentStyle = { italic = true },
|
|
functionStyle = {},
|
|
keywordStyle = { italic = true},
|
|
statementStyle = { bold = true },
|
|
typeStyle = {},
|
|
transparent = false,
|
|
dimInactive = false,
|
|
terminalColors = true,
|
|
colors = {
|
|
palette = {},
|
|
theme = { wave = {}, lotus = {}, dragon = {}, all = {} },
|
|
},
|
|
overrides = function(colors)
|
|
return {}
|
|
end,
|
|
theme = "dragon",
|
|
background = {
|
|
dark = "dragon",
|
|
light = "lotus"
|
|
},
|
|
})
|