neovim: set termguicolors.true

This commit is contained in:
Mark Riedesel 2025-03-15 14:27:15 -05:00
parent 34c56cc570
commit 85c24c5129

View file

@ -38,6 +38,7 @@ opt.smartcase = true -- ...unless mixed case is used in se
opt.backspace = "indent,eol,start" -- allow backspace on indent, eol, or insert mode start position opt.backspace = "indent,eol,start" -- allow backspace on indent, eol, or insert mode start position
opt.cursorline = true opt.cursorline = true
opt.swapfile = false -- disable swap file opt.swapfile = false -- disable swap file
opt.termguicolors = true
-- highlight trailing white space -- highlight trailing white space
vim.fn.matchadd('errorMsg', [[\s\+$]]) vim.fn.matchadd('errorMsg', [[\s\+$]])