From de211a96ce5298ea6b6a45c8b61fa05949051ba2 Mon Sep 17 00:00:00 2001 From: xengineering Date: Thu, 9 Jul 2026 15:24:19 +0200 Subject: nvim: Fix contrast for spell check highlighting The colours were set manually which does not work well with all the colour theming in the editor and terminal. Removing the manual settings make the config simpler, improves contrast in spell check highlighting and still highlights mistyped text. --- nvim/init.lua | 2 -- 1 file changed, 2 deletions(-) diff --git a/nvim/init.lua b/nvim/init.lua index 93b12e3..b97c89f 100644 --- a/nvim/init.lua +++ b/nvim/init.lua @@ -15,8 +15,6 @@ end vim.cmd.colorscheme('vim') vim.cmd.syntax('on') vim.cmd.filetype({'plugin', 'indent', 'on'}) -vim.cmd.highlight('SpellBad', 'ctermbg=Red') -vim.cmd.highlight('SpellBad', 'ctermfg=Black') vim.opt.mouse = 'a' vim.opt.tabstop = 4 -- cgit v1.3.1