fix: color issues
This commit is contained in:
parent
2bf1b60333
commit
6652a3ce3d
4
init.lua
4
init.lua
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue