32 lines
1.2 KiB
Lua
32 lines
1.2 KiB
Lua
require("kanagawa").setup({
|
|
compile = false, -- enable compiling the colorscheme
|
|
undercurl = true, -- enable undercurls
|
|
commentStyle = { italic = true },
|
|
functionStyle = {},
|
|
keywordStyle = { italic = true },
|
|
statementStyle = { bold = true },
|
|
typeStyle = {},
|
|
transparent = true, -- do not set background color
|
|
dimInactive = false, -- dim inactive window `:h hl-NormalNC`
|
|
terminalColors = true, -- define vim.g.terminal_color_{0,17}
|
|
colors = {
|
|
-- add/modify theme and palette colors
|
|
palette = {},
|
|
theme = { wave = {}, lotus = {}, dragon = {}, all = { ui = { bg_gutter = "none" } } },
|
|
},
|
|
overrides = function(colors) -- add/modify highlights
|
|
local theme = colors.theme
|
|
return {
|
|
Pmenu = { fg = theme.ui.shade0, bg = theme.ui.bg_p1, blend = vim.o.pumblend }, -- add `blend = vim.o.pumblend` to enable transparency
|
|
PmenuSel = { fg = "NONE", bg = theme.ui.bg_p2 },
|
|
PmenuSbar = { bg = theme.ui.bg_m1 },
|
|
PmenuThumb = { bg = theme.ui.bg_p2 },
|
|
CursorLine = { bg = "#272735" },
|
|
}
|
|
end,
|
|
theme = "wave", -- Load "wave" theme when 'background' option is not set
|
|
background = { -- map the value of 'background' option to a theme
|
|
dark = "wave", -- try "dragon" !
|
|
},
|
|
})
|