1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
-- require('kanagawa').setup({
-- compile = true, -- enable compiling the colorscheme
-- undercurl = true, -- enable undercurls
-- commentStyle = { italic = true },
-- functionStyle = {},
-- keywordStyle = { italic = true, bold = false },
-- statementStyle = { bold = false },
-- typeStyle = {},
-- transparent = true, -- do not set background color
-- dimInactive = false, -- dim inactive window `:h hl-NormalNC`
-- terminalColors = false, -- define vim.g.terminal_color_{0,17}
-- colors = { -- add/modify theme and palette colors
-- palette = {},
-- theme = { wave = {}, lotus = {}, dragon = {}, all = {} },
-- },
-- overrides = function(colors) -- add/modify highlights
-- return {}
-- end,
-- theme = "dragon", -- Load "wave" theme when 'background' option is not set
-- background = { -- map the value of 'background' option to a theme
-- dark = "dragon", -- try "dragon" !
-- light = "lotus"
-- },
-- })
-- setup must be called before loading
-- vim.cmd("colorscheme kanagawa")
|