fix: color issues

This commit is contained in:
0xfa1z 2024-07-10 17:14:06 +02:00
parent 2bf1b60333
commit 6652a3ce3d
1 changed files with 4 additions and 0 deletions

View File

@ -121,6 +121,10 @@ vim.opt.breakindent = true
-- Save undo history -- Save undo history
vim.opt.undofile = true 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 -- Case-insensitive searching UNLESS \C or one or more capital letters in the search term
vim.opt.ignorecase = true vim.opt.ignorecase = true
vim.opt.smartcase = true vim.opt.smartcase = true