[colorscheme]: remove bg_gutter in Kanagawa plugin.

This commit is contained in:
tronglt 2023-05-16 11:45:11 +07:00
parent 40da5cb900
commit dfb44480e0
1 changed files with 8 additions and 1 deletions

View File

@ -2,7 +2,14 @@ return {
"rebelot/kanagawa.nvim", "rebelot/kanagawa.nvim",
config = function() config = function()
require("kanagawa").setup { require("kanagawa").setup {
transparent = true transparent = true,
colors = {
theme = {
all = {
ui = { bg_gutter = "none" }
}
}
}
} }
vim.cmd [[colorscheme kanagawa]] vim.cmd [[colorscheme kanagawa]]
end, end,