Skip to content

Commit 60d0f1b

Browse files
committed
Add Kanagawa theme
1 parent 0c39e25 commit 60d0f1b

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

lua/custom/plugins/kanagawa.lua

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

0 commit comments

Comments
 (0)