diff --git a/neovim/.config/nvim/lua/user/theme.lua b/neovim/.config/nvim/lua/user/theme.lua index ed3a47e..0982b3a 100644 --- a/neovim/.config/nvim/lua/user/theme.lua +++ b/neovim/.config/nvim/lua/user/theme.lua @@ -2,8 +2,11 @@ vim.g.edge_diagnostic_virtual_text = "colored" vim.g.edge_better_performance = 1 vim.g.tokyonight_style = "night" +vim.api.nvim_set_hl(0, "SpellBad", { + fg = "red", +}) + vim.cmd([[ colorscheme gruvbox-material -hi SpellBad guifg=red hi clear SignColumn ]])