From 53e337d75a1e29f05c6aaa3713678e65a1ca9c5e Mon Sep 17 00:00:00 2001
From: Andres <andrsbtrg@gmail.com>
Date: Mon, 1 May 2023 23:42:36 +0200
Subject: [PATCH] Finally fixed match parenthesis colors in Habamax

---
 init.lua | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/init.lua b/init.lua
index 8230698f..e89a89bd 100644
--- a/init.lua
+++ b/init.lua
@@ -135,7 +135,7 @@ require('lazy').setup({
     opts = {
       options = {
         icons_enabled = false,
-        theme = 'rose-pine',
+        theme = 'auto',
         component_separators = '|',
         section_separators = '',
       },
@@ -541,9 +541,9 @@ require('rose-pine').setup({
   --- @usage 'main'|'moon'|'dawn'
   dark_variant = 'main',
   bold_vert_split = false,
-  dim_nc_background = true,
-  disable_background = false,
-  disable_float_background = false,
+  dim_nc_background = false,
+  disable_background = true,
+  disable_float_background = true,
   disable_italics = false,
   --- @usage string hex value or named color from rosepinetheme.com/palette
   groups = {
@@ -581,8 +581,9 @@ require('rose-pine').setup({
 })
 
 -- Set colorscheme after options
-vim.cmd('colorscheme rose-pine')
--- vim.api.nvim_set_hl(0, "Normal", { bg = "none" })
--- vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none" })
+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_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