kanagawa update

This commit is contained in:
Benjamin Kyd
2023-04-28 16:37:03 +01:00
parent 541502187b
commit 7211ad058f
2 changed files with 19 additions and 19 deletions

View File

@@ -20,24 +20,24 @@ end, { desc = "Toggle Zen Mode" })
vim.o.termguicolors = true
vim.o.background = 'dark'
require('kanagawa').setup({
undercurl = true, -- enable undercurls
commentStyle = { italic = true },
functionStyle = {},
keywordStyle = { italic = true},
statementStyle = { bold = true },
typeStyle = {},
variablebuiltinStyle = { italic = true},
transparent = false, -- do not set background color
dimInactive = false, -- dim inactive window `:h hl-NormalNC`
globalStatus = true, -- adjust window separators highlight for laststatus=3
terminalColors = true, -- define vim.g.terminal_color_{0,17}
colors = {
bg = '#22222d',
},
overrides = {},
theme = "default" -- Load "default" theme or the experimental "light" theme
})
--require('kanagawa').setup({
--undercurl = true, -- enable undercurls
--commentStyle = { italic = true },
--functionStyle = {},
--keywordStyle = { italic = true},
--statementStyle = { bold = true },
--typeStyle = {},
--variablebuiltinStyle = { italic = true},
--transparent = false, -- do not set background color
--dimInactive = false, -- dim inactive window `:h hl-NormalNC`
--globalStatus = true, -- adjust window separators highlight for laststatus=3
--terminalColors = true, -- define vim.g.terminal_color_{0,17}
--colors = {
--bg = '#22222d',
--},
--overrides = {},
--theme = "default" -- Load "default" theme or the experimental "light" theme
--})
-- setup must be called before loading
vim.cmd("colorscheme kanagawa")