summaryrefslogtreecommitdiffstats
path: root/.config/nvim/after
diff options
context:
space:
mode:
authorJoe <rbo@gmx.us>2024-01-04 17:29:10 +0100
committerJoe <rbo@gmx.us>2024-01-04 17:29:10 +0100
commite564d48d64112a9b9d137ac2884c44f3e5307108 (patch)
treefd01bc013d9298556162dbe4d39f6772674a4ddd /.config/nvim/after
parentup (diff)
downloaddotfiles-bsd-e564d48d64112a9b9d137ac2884c44f3e5307108.tar.gz
dotfiles-bsd-e564d48d64112a9b9d137ac2884c44f3e5307108.tar.bz2
dotfiles-bsd-e564d48d64112a9b9d137ac2884c44f3e5307108.tar.xz
dotfiles-bsd-e564d48d64112a9b9d137ac2884c44f3e5307108.tar.zst
dotfiles-bsd-e564d48d64112a9b9d137ac2884c44f3e5307108.zip
up
Diffstat (limited to '')
-rw-r--r--.config/nvim/after/plugin/kanagawa.lua12
1 files changed, 6 insertions, 6 deletions
diff --git a/.config/nvim/after/plugin/kanagawa.lua b/.config/nvim/after/plugin/kanagawa.lua
index 8d9e00d..017052b 100644
--- a/.config/nvim/after/plugin/kanagawa.lua
+++ b/.config/nvim/after/plugin/kanagawa.lua
@@ -1,12 +1,12 @@
require('kanagawa').setup({
- compile = false, -- enable compiling the colorscheme
+ compile = true, -- enable compiling the colorscheme
undercurl = true, -- enable undercurls
commentStyle = { italic = true },
functionStyle = {},
- keywordStyle = { italic = true},
- statementStyle = { bold = true },
+ keywordStyle = { italic = false, bold = true },
+ statementStyle = { bold = false },
typeStyle = {},
- transparent = false, -- do not set background color
+ 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
@@ -16,9 +16,9 @@ require('kanagawa').setup({
overrides = function(colors) -- add/modify highlights
return {}
end,
- theme = "wave", -- Load "wave" theme when 'background' option is not set
+ theme = "dragon", -- Load "wave" theme when 'background' option is not set
background = { -- map the value of 'background' option to a theme
- dark = "wave", -- try "dragon" !
+ dark = "dragon", -- try "dragon" !
light = "lotus"
},
})