use nvim api for highlights

This commit is contained in:
2022-06-15 22:42:15 +03:00
parent 4ca4bb4270
commit f948c5ba54

View File

@@ -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
]])