From 6652a3ce3da89922ab838acbd27a725b32b79cd8 Mon Sep 17 00:00:00 2001 From: 0xfa1z Date: Wed, 10 Jul 2024 17:14:06 +0200 Subject: [PATCH] fix: color issues --- init.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/init.lua b/init.lua index 756769de..35721ff5 100644 --- a/init.lua +++ b/init.lua @@ -121,6 +121,10 @@ vim.opt.breakindent = true -- Save undo history vim.opt.undofile = true +-- Enable true color support +-- See `:help 'termguicolors'` +vim.opt.termguicolors = false + -- Case-insensitive searching UNLESS \C or one or more capital letters in the search term vim.opt.ignorecase = true vim.opt.smartcase = true