From 4e27af39cfd13196f1f7bd0b3a9feb607013607f Mon Sep 17 00:00:00 2001 From: cry386i Date: Thu, 31 Jul 2025 19:01:00 +0300 Subject: [PATCH] Setting nvim theme apply and now it's not be break --- lua/plugins/lazy.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lua/plugins/lazy.lua b/lua/plugins/lazy.lua index 8ceb3ad..8901cf9 100644 --- a/lua/plugins/lazy.lua +++ b/lua/plugins/lazy.lua @@ -26,8 +26,9 @@ require('lazy').setup({ lazy = false, priority = 1000, config = function() + vim.opt.termguicolors = false vim.opt.background = 'dark' - vim.g.gruvbox_italic = 1 + vim.g.gruvbox_italic = true vim.cmd([[colorscheme gruvbox]]) end, },