From 8657ab4d06e1d55af07e511eedc78baf56171c7c Mon Sep 17 00:00:00 2001 From: Andres Date: Mon, 1 May 2023 23:46:49 +0200 Subject: [PATCH] Keep background color --- init.lua | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/init.lua b/init.lua index e89a89bd..3a7bab97 100644 --- a/init.lua +++ b/init.lua @@ -582,8 +582,11 @@ require('rose-pine').setup({ -- Set colorscheme after options vim.cmd('colorscheme habamax') -vim.api.nvim_set_hl(0, "Normal", { bg = "none" }) -vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none" }) +-- vim.api.nvim_set_hl(0, "Normal", { bg = "none" }) +-- vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none" }) +-- +-- Fix the matching parenthesis color vim.api.nvim_command('hi MatchParen ctermbg=gray guibg=lightblue') + -- The line beneath this is called `modeline`. See `:help modeline` -- vim: ts=2 sts=2 sw=2 et