From dfb44480e03703b22c8685c5e083d47de570f3b1 Mon Sep 17 00:00:00 2001 From: tronglt Date: Tue, 16 May 2023 11:45:11 +0700 Subject: [PATCH] [colorscheme]: remove bg_gutter in Kanagawa plugin. --- lua/custom/plugins/kanagawa.lua | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/lua/custom/plugins/kanagawa.lua b/lua/custom/plugins/kanagawa.lua index 4a930964..5e70fc87 100644 --- a/lua/custom/plugins/kanagawa.lua +++ b/lua/custom/plugins/kanagawa.lua @@ -2,7 +2,14 @@ return { "rebelot/kanagawa.nvim", config = function() require("kanagawa").setup { - transparent = true + transparent = true, + colors = { + theme = { + all = { + ui = { bg_gutter = "none" } + } + } + } } vim.cmd [[colorscheme kanagawa]] end,